0

From some reason, any time I connect IBOutlets or IBActions in Interface Builder, and build my app, the app crashes. In the Console Log I get this: Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key leftWebView.'

How can I solve it?

Thanks

Dan
  • 17,375
  • 3
  • 36
  • 39

1 Answers1

0

My guess is that you have removed a property from your controller that is still hooked up to an Action or Outlet in Interface Builder. Try editing the view in Interface Builder to remove that connection.

Also check to see if the Class Identity on the nib is set to the name of the controller class that uses it.

Dan
  • 17,375
  • 3
  • 36
  • 39
  • Thanks, but it isn't the reason. All of my outlets and actions are overlaping –  May 27 '10 at 14:28
  • Ok, I edited my answer with another suggestion. Let me know if that works. – Dan May 27 '10 at 15:04
  • Thanks, but what I say is that nothing is connected in INterface Builder and when I connect an outlet for example and build my app in the simulator is crashed –  May 27 '10 at 18:16
  • Nothing, I checked everything and nothing Any attempt to make outlet/action connection ends with crash –  May 28 '10 at 19:18