I have a button within interface builder that has a '0' tag on it. The button has a method linked to it called -(IBAction) doTest:(id)sender.
I have the doTest method within my .m file as shown below:
-(IBAction) doTest:(id)sender
{
int currentSelection= [sender tag];
if (currentSelection == 0)
{
// do something
}
}
However my app crashes with the following error message and I have no idea why. Any help would be appreciated. Thanks.
[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'
doTest, notdoTest:). – Josh Caswell Mar 5 '12 at 3:450is the default tag for a view, and also if sender isnil, then[sender nil]will return0, you should consider using a different value for the tag, too. – Ash Furrow Mar 6 '12 at 2:09