1

I'm new to IOS and I'm stuck with an error I added a table view in my storyboard named timelinetable and after some time I deleted that from my storyboard but after that when debugging it shows an error

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

but I cant find anything named timelinetable in my project so how can I fix that problem

2 Answers2

11
  1. Go to the xib
  2. click on files owner and click on the show connection inspector button (last one ).
  3. Check out all the connections . The problem is due to you are referencing the outlet which is no more exist.
V-Xtreme
  • 7,230
  • 9
  • 39
  • 79
  • @V-Xtream but its not working for me Even I deleted the xib file in the project and its still showing the same error –  Apr 04 '13 at 05:26
  • 1
    I solved my problem Actually the problem is with my simulator after deleting the project from simulator it runs perfectly any way thanks for the help –  Apr 04 '13 at 06:19
  • @AlenJoy:nice to here this. – V-Xtreme Apr 04 '13 at 06:22
1

you connect an outlet and you then remove the controller without removing its outlet.