我在界面构建器中有一个按钮,上面有一个'0'标记。该按钮有一个名为-(IBAction) doTest:(id)sender
的链接方法。
我的.m文件中有doTest
方法,如下所示:
-(IBAction) doTest:(id)sender
{
int currentSelection= [sender tag];
if (currentSelection == 0)
{
// do something
}
}
然而,我的应用程序崩溃时出现以下错误消息,我不明白为什么。任何帮助,将不胜感激。感谢。
[groceryapp doTest]: unrecognized selector sent to instance 0xc29c00
2012-03-04 20:26:10.155 groceries[4627:707] ***
Terminating app due to uncaught exception 'NSInvalidArgumentException',
reason: '-[grocery doTest]: unrecognized selector sent to instance 0xc29c00'
答案 0 :(得分:0)
错误信息。
doTest vs doTest: