'NSUnknownKeyException',
reason: '[<UIApplication 0xde7b110> setValue:forUndefinedKey:]:
this class is not key value coding-compliant for the key guessText.'
my app keeps crashing, why?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
While this can happen for lots of reasons, this error is most frequently seen when you have some view you’ve designed in Interface Builder that references a non-existent
IBOutlet, in your case one calledguessText. Perhaps you had one that you subsequently renamed or removed from your .h? Open up your NIB/storyboard in Interface Builder, and look at the outlets, and see if you can find the one that’s referencingguessTextand fix that accordingly (either delete the outlet or create theIBOutletin your code).