1

我有一个带有按钮的 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.   
4

1 回答 1

0

问题在于else if(butonIndex==1)您缺少单词按钮中的第二个“t”。

为了将来参考,Xcode 的“Fix-It”功能将为您修复此类小错误。

在此处输入图像描述

单击红色圆圈以激活修复菜单,然后只需按 Enter。

编辑:

做这个:

- (void)myMethod{

}

-(void)alertView:(UIAlertView* )alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{

}

不是这个:

- (void)someMethod
{
    -(void)alertView:(UIAlertView* )alertView clickedButtonAtIndex:(NSInteger)buttonIndex
    {

    }
}

如果不是这种情况,那么您在警报视图委托之前的方法末尾缺少右大括号“}”。

于 2012-10-29T13:49:56.593 回答