views:

82

answers:

2

Hi there..

Im new im making in making iPhone apps so i have no idea what this error means ?

I saw another post with this error but i couldn't figure out how to get it right..

i get this error:

Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key ImageView.'

and i have no clue what this means ? 0.o

can some help me here ?

Thanks!

A: 

Check you nib to see if you have an outlet or action hooked up to a property that no longer exists in the view controller.

Dan
A: 

You might have changed the name of the IBOutlet your nib file refers to.

  1. Check each connection in your nib file to see what it references
  2. Search in your code for that reference to confirm it's there.
BankStrong