为UIAlertView上的按钮添加方法,需要重写协议中对话框按钮点击事件方法

-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSinteger)buttonIndex

{

    if(alertView == 定义的那个UIAlertView名字(需是全局变量))

        {

             if(buttonIndex == 0)

            {

                 ...

            }

            if(buttonIndex == 1)

            {

                 ...

            }

        }

}


你可能感兴趣的:(uialertview,按钮点击方法)