Quote:
Originally Posted by Iphoneer
if ([[tableContent objectAtIndex:indexPath.row] isEqual:@"Sample", @"blah blah"])
This is not the objective C way to send a message that takes two arguments. Did you define an IsEqual message in your CustomCell class? If so, then I would expect call to look like
[[tableContent objectAtIndex:indexPath.row] isEqual: @"Sample" secondArg: @"blah blah"];
Where secondArg would be replaced by whatever you called it.
|
No I didn't how do I do that?