Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Build a Self-Destructing Message iPhone App Using Parse.com as a Backend and Adding Users Logging In and Logging Out

NSLog(@"Current user: %@", currentUser.username); it was fine. So i complete exercise and got an error.

Ribbit[24037:60b] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<inboxViewController 0x9ab71a0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key logout.'

Watched 3 times video and still don't see any difference. In stackoverflow the same problem with the second name of viewcontroller..can someone give a hint to me?

2 Answers

Stone Preston
Stone Preston
42,016 Points

is logout a button? try looking at the connections inspector for your view controller (its on the same bar as attributes inspector, size inspector etc) and see if you have a warning sign on any of your connections. if you do, delete it by clicking the x on the right of the connection. You probably added an ib action and then renamed it without properly removing the old connection first.

Yes! I found. First time I bound button "logout" I did IBOutlet but deleted and made IBAction. So I had two connections but 0 warning signs! Thank you!