I keep getting this error:
alt text http://img514.imageshack.us/img514/2203/help.tif
What is it? I never even called \"isEqualToString\".
Here Is my Joke
The error is not in the definition of the Joke class, but somewhere it's being used. In most cases with errors like this, it's the result of a memory management error — some object (presumably a string) gets deallocated and another gets allocated in its old memory location. Try running with NSZombieEnabled and see if it turns up a message to a dealloced object.