Even though Interface Builder is aware of a MyClass, I get an error when starting the application.

This happens when MyClass is part of a library, and does not happen if I compile the class directly in the application target.

link
How do you link to the library? – Elise van Looij Nov 13 '09 at 9:11
I use a dependent subproject, and did a drag'n'drop from the Xcode subproject's products into my current target's "Link Binary With Library" build phase. – jhoule Nov 13 '09 at 21:19
feedback

13 Answers

up vote 40 down vote accepted

Despite the "Unknown class MyClass in Interface Builder file." error printed at runtime, this issue has nothing to do with Interface Builder, but rather with the linker, which is not linking a class because no code uses it directly.

When the .nib data (compiled from the .xib) is loaded at runtime, MyClass is referenced using a string, but the linker doesn't analyze code functionality, just code existence, so it doesn't know that. Since no other source files references that class, the linker optimizes it out of existence when making the executable. So when Apple's code tries to load such a class, it can't find the code associated with it, and prints the warning.

By default, Objective-C targets will have -all_load -ObjC flags set by default, which will keep all of the symbols. But I had started with a C++ target, and didn't have that. Nevertheless, I found a way around this, which keeps the linker aggressive.

The hack I was originally using was to add an empty static routine like:

+(void)_keepAtLinkTime;

which does nothing, but that I would call once, such as:

int main( int argc, char** argv )
{
   [MyClass _keepAtLinkTime];
   // Your code.
}

This would force the linker to keep the whole class, and the error disappears.

As jlstrecker pointed out in the comments, we do not really need to add a _keepAtLinkTime method. Simply calling an existing one, such as:

   [MyClass class];

does the trick (as long as you derive from an NSObject).

Of course, you can call this in any location of your code. I guess it could even be in unreachable code. The idea is to fool the linker into thinking that MyClass is used somewhere so that it isn't so aggressive in optimizing it out.

link
The .xib data isn't loaded at runtime. The IB compiler compiles the xib to a nib; the nib is what gets loaded at runtime. – Peter Hosey Nov 13 '09 at 4:12
Good point. I edited my answer accordingly. – jhoule Nov 13 '09 at 21:16
6  
You don't have to modify MyClass. Just call a method it inherits from NSObject, like +class. – jlstrecker Jan 27 '11 at 20:28
1  
Though it was no Xcode 4 when original question was posted, the following still seems to be appropriate. In Xcode 4 instead of adding some dummy method to eliminate the error, you can check all the needed targets of MyClass.m in the Target Membership section of the File Inspector. – adubr Apr 27 '11 at 17:57
1  
Exactly the same problem. Thanks! Upvoted. – lambmj Nov 18 '11 at 18:15
show 3 more comments
feedback

This doesn't really have anything to do with Interface Builder, what's happening here is the symbols aren't being loaded from your static library by Xcode. To do resolve this problem you should need to add the "-all_load -ObjC" flags to the "Other Linker Flags" key the Project (and possibly the Target) Build Settings.

Since Objective-C only generates one symbol per class we must force the linker to load the members of the class too by using the -ObjC flag, and we must also force inclusion of all our objects from our static library by adding the -all_load linker flag. If you skip these flags sooner or later you will run into the error of "unrecognized selector" or get other exceptions such as the one you've observed here.

link
feedback

It's a Xcode4 cache problem, just delete all folders under /Users/your_user/Library/Application Support/iPhone Simulator/4.3/Applications/

Also if you have the same issue testing on your iPhone, delete the old app before running it...

Good luck. Pascual

link
The post dates back 2009, when Xcode 4 was not even released... – jhoule Apr 21 '11 at 13:01
4  
In the Project Build Settings you need to add the "-all_load -ObjC" flags to the "Other Linker Flags" key. This is not an Xcode 4 specific problem, and in fact generally has nothing to do with Interface Builder either. – Alasdair Allan May 23 '11 at 1:46
This solution was already suggested in January 2010 (see above). – jhoule May 24 '11 at 21:20
3  
Yes - the easier way to do this is just open the iOS Simulator and from the menu choose 'Reset Content and Settings' – ObjectiveFlash May 29 '11 at 5:41
Or you could do what I did and just delete the app in question from the Simulator home screen. I had the same error message, but it was referencing an old app delegate. – spstanley Apr 14 at 13:44
feedback

I fixed this along the lines of what Laura suggested but I didn't need to recreate the files. Using XCode 4, select the .m file that contains the class that it is complaining about and then go to View->Utilities->File Inspector Open the "Target Membership" section and make sure that your target is selected for this .m When I added my .m file to my project, it didn't add it to my default target for some reason and that caused me to get the error you mentioned.

link
It is true that sometimes, the linker error is due to simply not compiling your file in your target in the first place. What you describe is the way to control the target(s) that a file is associated to. Unfortunately, my file was already part of my target, but I still had a link issue. This was probably due to my library being C++ (as opposed to Objective-C), which has different default linker flags (see posts by Alasdair Allan and Sijo above). – jhoule Aug 25 '11 at 15:09
This suggestion worked for me, although slightly differently, since my "Target Membership" checkbox was already checked. I unchecked it and re-built, but then the error message changed to indicate my new class name. Re-checking the box and building again, everything now works. Much easier than deleting cache files! – electromaggot Feb 8 at 18:46
This worked well for me and seemed better than the other suggested solutions. – user786383 Mar 18 at 19:12
feedback

I fixed this by copying the text from my class.h and .m, deleting those class files from the project, and creating new class.h and .m files with the same name using "Add File". Then I pasted the code back into the new files, and everything worked great. Somehow the files weren't linked correctly when they were created. I didn't need to use any linker flags after that.

link
This worked for me -- thanks! – Christopher Hujanen Feb 14 '11 at 2:21
when I had first created the files I didn't have a .m at the end. I tried renaming the file and adding it back in, however I still had to delete and recreate the file before xcode was happy. – odyth May 22 '11 at 1:03
Your file probably wasn't part of your target. Re-adding it likely ended up with a default checkbox in the proper target. – jhoule Aug 25 '11 at 15:01
This solution also worked for me, but I made 100% sure that before I deleted the first class (.h + .m), I checked that it was part of my target. That was not the problem for me. Like Laura, I just deleted the class and made it again (with a different name), and it worked fine, without any of the other solutions on this page. – Nate Oct 19 '11 at 9:14
feedback

I tried this, and other, answers listed on this site, none of which sorted it for me. This comments (from http://www.iphonedevsdk.com/forum/iphone-sdk-development/43330-unknown-class-interface-builder-file.html) helped:

After searching and searching and searching, I finally discovered the name of this deleted class hidden in a file. I had to open the interface builder files in X-code, by right clicking on them and choosing 'view as source code'. Then searching for it came up with

<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>com.apple.InterfaceBuilder.IBCocoaTouchP lu gin</string>
<string>*this was the class name*</string>

Simply removing that last line doesn't fix it unfortunately, complaining that there are the wrong number of items in the file. You need to remove the corresponding line in the section of lines above it, which refers to CustomClass.

link
feedback

Just remove the MyClass.m and .h and add them to project again is work for me.

link
feedback

Not only in project settings, but in Target setting also u have to add -all_load -ObjC flags..

http://stackoverflow.com/questions/2431187/core-plot-unknown-class-cplayerhostingview-in-interface-builder-file/3012320#3012320

link
feedback

This happens because the .xib has got a stale link to the old App Delegate which does not exist anymore. I fixed it like thus:

  • Right click on the .xib and select Open as > Source code
  • In this file, search the old App delegate and replace it with the new one
link
feedback

I tried most of the solutions you guys suggested above but to no avail. After reading the solution from user776904's I suspected I was having the same issue as I had rebuilt my app from the ground up but copied the xib files from the previous project. I suspected the xib file had a reference to the old project that was causing my error so I simply deleted my mainwindow_ipad.xib file and copied in a new one from a clean new project. This solved it. And I was not game enough to start changing bits of the xib file in its source code.

link
feedback

I had this error crop up today when converting my aaLuminate app to Universal under Xcode 4. This app is based on the utility template and was originally built under Xcode 3.

To save time I copied the iPhone Main and Flipside Views across to appropriate names on the Universal app. I experienced the "Unknown class x in Interface Builder file" error. In my case it was nothing in the XIB files or targets.

I had also copied the aaLuminate-Info.plist file across for other reasons - this had an old key "Main nib file base name" set to MainWindow.

As soon as I deleted this key it fixed the problem!

link
feedback

In my case I got this error because I'd tried to save some work by creating a new project and then deleting several of the source files and copying over the source files of the same name from the working project. I also copied my MainStoryBoard file which was looking for my RootViewController. However, when I had deleted the original RootViewController and then added in the RootViewController from the previous product, evidently the Add Files operation failed to "check" the target box as suggested above. By merely visting all of the newley imported ".m" files and making sure that the target membership box was checked, all was well. I think what was happening was that the storyboard file was looking for a class that had been "excluded" from the link because the target membership was unchecked. Making sure the required files for the target are so designated in the target membership in the file inspector did the trick. Thanks Pat! (see above)

link
feedback

In my case it was because I declared a subclass of a subclass of a UITableView cell in the .h file (the declaration of both subclasses were in the same .h file), but forgot to make an empty implementation of that second subclass in the .m file.

don't forget to implement any subclass of a subclass you declare in the .h file! sounds simple, but easy to forget because Xcode will do this for you if you are working with one class per .h/.m file.

link
feedback

Your Answer

 
or
required, but never shown

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