我有一个带有按钮的 UIAlertView,我试图让这些按钮执行一个动作。问题是我的方法中有一个“未声明的标识符”。
我看到的问题http://tinypic.com/view.php?pic=28qvhom&s=6
编码
警报视图
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"Well done!"
message: @"You got all 20 in Time: x"
delegate:nil
cancelButtonTitle:nil
otherButtonTitles:@"Save and Quit", @"Quit", nil];
[alert show];}
虚空
-(void)alertView:(UIAlertView* )alertView
clickedButtonAtIndex:(NSInteger)buttonIndex
{
if(buttonIndex==0) {/*some action */ }
else if(butonIndex==1){/*some action */}
}
//I aso have <UIAlertViewDelegate> in my .h file.