Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to link a UILabel with an IBOutlet created in my class. Every time I build my application, it crashes on the label screen with the error "this class is not key value coding-compliant for the key XXXX".

Here is the code in SecondView.h.

@interface SecondView : UIViewController {
    IBOutlet UILabel *string;
}

@property (nonatomic, retain) IBOutlet UILabel *string;

@end

Here is the code in SecondView.m (Almost nothing in there apart from the auto-generated code, which I don't paste here).

@implementation SecondView

@synthesize string;

In my SecondView.xib,

  • the UILabel is linked with the File's Owner.
  • the class of the File's Owner is SecondView.

So what is wrong here?

One more thing: every time I create a new application and try to link a UISomething to an IBOutlet, I get the same error. Is there a global parameter that can generate the error I've encountered?


Editor's note: The project that used to be here is now a broken link.

share|improve this question

21 Answers

up vote 161 down vote accepted

I downloaded your project.

The error you are getting is

'NSUnknownKeyException', reason: '[<UIViewController 0x3927310> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key string.'

It is caused by the Second view controller in MainWindow.xib having a class of UIViewController instead of SecondView. Changing to the correct class resolves the problem.

By the way, it is bad practice to have names like "string" in Objective-C. It invites a runtime naming collision. Avoid them even in once off practice apps. Naming collisions can be very hard to track down and you don't want to waste the time.

share|improve this answer
14  
Stackoverflow to the rescue again. :) – Toby Allen Mar 7 '11 at 21:03
1  
do you have any idea how cool you are! I had the same problem and I found my MainWindow.xib files Tab Bar Controller had it's first view controller set to UIViewControl instead of my class. Thanks for posting this! – jspooner May 4 '11 at 18:12
58  
Yes, I do know how cool I am. ;-) – TechZen May 4 '11 at 19:35
Super answer. Amazing how this is not covered that much . – jini May 12 '11 at 3:01
2  
Also do not forget to connect the "view" outlet of the nib to the file owner's view outlet (The view outlet of your custom class inherited from UIViewController). This can be done by control dragging from "File's Owner" under "Place Holders" to "view" under "Objects" and selecting the view outlet. – Nirma Aug 11 '11 at 14:49
show 5 more comments

I've had this error many times. While TechZen's answer is absolutely right in this case, another common cause is when you change the name of a IBOutlet property in your .h/.m which you've already connected up to File's Owner in the nib.

From your nib:

  1. Select the object in IB and go to the 'Connections Inspector'.
  2. Under 'Referencing Outlets' make sure that your object isn't still connected to the old property name... if it is, click the small 'x' to delete the reference and build again.
share|improve this answer
8  
This was my problem. tHanks for pointing this possible cause out. – Paul Heller Mar 2 '12 at 20:15
2  
Me too. Thank you for calling this out. – Michael Stern May 5 '12 at 0:31
Fixed my problem right away after reading this answer. Thx. – John Erck Oct 8 '12 at 19:30
Great thanks to you, helped a lot! – Alex Nov 12 '12 at 13:15
thanks for adding this – user1697845 Jan 16 at 23:30
show 2 more comments

I had the same problem and while TechZen's answer may indeed be amazing I found it hard to apply to my situation.

Eventually I resolved the issue by linking the label via the Controller listed under Objects (highlighted in the image below) rather then via the File Owner.

Hope this helps. enter image description here

share|improve this answer

If it is an iPhone only app, not a universal one, make sure the following field is empty:

Targets > Summary > iPhone/iPod Deployment Info > Main Interface

If you specify an xib there it crashes.

share|improve this answer
Yep, that was it for me. While flailing around to add a new startup view controller I set this to the new class/nib. After hooking up the view outlet I was hitting this error. Clearing this field fixed it. – terriblememory Jul 13 '12 at 23:55
This worked for me. Note that I also had to delete the old version from the device/simulator for it to work. – jimt Oct 16 '12 at 20:57
Thanks - this was my problem. I had renamed my iPad storyboard file and did not update in my project's prefs. – CaymanEss Dec 17 '12 at 16:35
  1. You only need to specify IBOutlet once, the IBOutlet label your ivar is unnecessary.
  2. Are you instantiating your NIB using your UIViewController? At some point you should be calling [SecondView initWithNibName:@"yourNibName" bundle:nil];
share|improve this answer
This helped! I was getting a key-value coding compliance error about a property from a different view controller. Turns out I was calling -initWithNibName with the wrong nib name. – jlstrecker Oct 25 '11 at 18:11
Yes this helped me too.. i was using the UIViewController instead of MyCustomeViewController.. but this is kind of hierarchy issue may be.. the introspection failed because of the miss placed class object.. Thank you anyways – Futur Dec 12 '11 at 5:38

I had to delete the app from the simulator/iPhone to get rid of this error.

share|improve this answer
+1 this fixed it for me. I was cleaning up some code that used IB. When I deleted a button from the code the error kept popping up even when this button was not referenced at all in the nib files (at least that I could see). – SundayMonday Sep 26 '12 at 20:34
I wouldn't have guessed it but this worked for me. Thanks – Jazzmine Dec 14 '12 at 0:09

I got the same problem. I did resetting the simulator. Removing and adding button control. and finally made a clean. :) Thanks to stack overflow. Some how my code became ok and starting working.

share|improve this answer

That might be the case of referencing a component from Xib Interface that you have renamed or delete. Re-referencing works for me.

share|improve this answer

This error indicates that an already connected Interface Builder object is removed/renamed in its owner's source (File's Owner).

CMD+click on the Files's Owner in the Interface Builder if you see a exclamation mark you need to fix that.

In the picture below you can see that "aRemovedView" has an exclamation mark on its right, that's because I removed the IBOutlet view object while it was already connected in the IB.

enter image description here

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

share|improve this answer

Another "not compliant" issue I found was when I managed to have two copies of a class for some reason.

I was adding keys to the wrong copy. Interface Builder still saw the keys and let me hook up to them, but at runtime it was using the other copy of the class that didn't have the new keys.

To find which was the "right" copy I used XCode's cmd-click on the class name elsewhere to jump to the correct copy, then I killed off the bad unused copies (after bringing over my edits from the un-used copy first).

Moral of the story: duplicate class files are bad.

share|improve this answer
Updated with project source. – Echilon May 16 '11 at 17:27

I had a similar problem for a project that has two targets (with their own MainWindow XIB). The fundamental issue that caused this error for me was that the UIViewController class wasn't included in the second project's resource list. I.e. interface builder allowed me to specify it in MainWindow.xib, but at runtime the system couldn't locate the class.

I.e. cmd-click on the UIViewController class in question and double-check that it's included in the 'Targets' tab.

share|improve this answer

I was getting this error with storyboards. The above solution didn't seem to be the problem so I ended up deleting the view controller and adding it back in again (and of course reconnecting the segue and reassigning the class) which fixed it. I don't know what it really was, but I had renamed the associated view controller class shortly before this started, so maybe that had hosed something.

share|improve this answer
I got this error again. This time I created a new empty table view controller with my class assigned to it, leaving the non-working one alone, and moved the segue to it. This worked. I then slowly copied every element in the view over until it failed again. This time the problem turned out to be I had assigned some "User Defined Runtime Attributes" for a picker (I was thinking I could use them to initialize the picker so I wouldn't have to do it in code, no idea if that's possible). Removing that fixed the problem. This error is really horrible, I hope it's improved in a future release! – Symmetric Jan 7 '12 at 4:39

I had the same kind of problem. I created a tableviewCell in a XIB file and was getting that kind of error. My problem was that I defined the "File's Owner" class to be my cell view controller. I just took it out and set the cell's class (on the xib file click the border of the cell, go to the third tab on the right panel and where it says class chose your view controller).

Also try cleaning your code.

share|improve this answer

Same issue presented. My solution was to put the correct storyboard value in the Main Storyboard drop down. I had renamed mainstoryboard.storyboard, but not reset the deployment info.

share|improve this answer

Check if you have stray Referencing Outlets by selecting the offending object in the Storyboard/xib interface and opening the Connections Inspector (View->Utilities->Show Connections Inspector). If you do remove the unwanted connections and you should be good to go.

share|improve this answer

I had the same problem and none of the above applied. Turns out in my case I had forgotten to add a synthesize in the .m file for the IBOutlet property I had defined in the .h file.

share|improve this answer

Usually when this happens to me, @TechZen's answer does the trick. Yesterday, however, I spent an embarrassingly long time mucking with storyboard connections only to discover that the problem was in my code.

I have a custom view controller that handles various layouts in my storyboard, but one of the layouts needed a special label not used by the others. So I created a subclass like so:

@interface MyViewControllerSubclass : MyViewController

Then I added a private property in MyViewControllerSubclass.m:

@interface MyViewController ()
@property (weak, nonatomic) IBOutlet UILabel *crashesApp;
@end

Xcode happily allowed me to connect this IBOutlet, yet every time the view would load, the app would crash with the old "not key-value compliant for the key 'chrashesApp'".

The solution, which is semi-obvious in retrospect, was to change the private category to use the correct name, i.e., that of the subclass:

@interface MyViewControllerSubclass ()
@property (weak, nonatomic) IBOutlet UILabel *noMoreCrashing;
@end
share|improve this answer

I just had this issue in my duplicated project and solved by checking 2 places:

1- Make sure you have the .m file in the list -> Project - Build Phases - Compile Sources
2- After that, go to interface builder (probably this is an error occures with only IB) and unlink all properties, labels, images, etc... Then re-link all. I have realized that I've removed an attribute but it was still linked in IB.

Hope it works for some.

share|improve this answer

Another one cause of this situation is that you declare this property implemented as @dynamic, but class can not find it in parent class.

share|improve this answer

This problem also happens if you want to design a small subview in a separate XIB file in Interface Builder, and in IB you set it to the same class as the parent view.

If you then show it like this:

UIViewController *vc = [[UIViewController alloc] initWithNibName:@"NameOfTheSubviewNibFile" bundle:nil];
[self.view addSubview:vc.view];

The view will appear, but if it's got IBOutlets connected to its File Owner, you'll get the error message. So, this should work instead:

  1. In your the parent view's code, declare an IBOutlet UIView *mySubview to reference the view in the subview's nib file
  2. In the subview's nib file, connect the File Owner to the view, and set it to mySubview
  3. show it by doing:
[[NSBundle mainBundle] loadNibNamed:@"NameOfTheSubviewNibFile" owner:self options:nil]
[self.view addSubview:mySubview];

and you will be fine!

share|improve this answer

I deleted the property from the header file. I couldn't find any reference to it but the debug error was still referencing it. I found that the nib file still had a reference to it. I deleted the block that referenced it and everything was fixed.

In Project Navigator,

Find the Nib (xib) file. Right click and View Source. I deleted the the following full section

<object class="IBConnectionRecord">
    <object class="IBCocoaTouchOutletConnection" key="connection">
        <string key="label">DeleteLabel</string>
        <reference key="source" ref="372490531"/>
        <reference key="destination" ref="774585933"/>
    </object>
    <int key="connectionID">20</int>
</object>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.