¡@

Home 

2014/10/15 ¤U¤È 10:10:42

iphone Programming Glossary: joke

“isEqualToString” Cocoa error

http://stackoverflow.com/questions/930929/isequaltostring-cocoa-error

isEqualToString&rdquo Cocoa error I am getting an error in my console 2009 05 30 20 17 05.801 ChuckFacts 1029 20b Joke isEqualToString unrecognized selector sent to instance 0x52e2f0 Here is my code that I believe the error is coming from.. tableView UITableView tableView cellForRowAtIndexPath NSIndexPath indexPath static NSString CellIdentifier @ Joke UITableViewCell cell tableView dequeueReusableCellWithIdentifier CellIdentifier if cell nil NSBundle mainBundle loadNibNamed.. exception share improve this question Why is that error coming in Because you're sending isEqualToString to a Joke object and your Joke objects don't respond to isEqualToString . You're probably not intentionally sending that message to..