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.
|
Even though Interface Builder is aware of a This happens when | |||||
feedback
|
|
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, By default, Objective-C targets will have The hack I was originally using was to add an empty static routine like:
which does nothing, but that I would call once, such as:
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
does the trick (as long as you derive from an 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 | |||||||||||||||||
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. | |||
|
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 | |||||||||||||||
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. | |||||||
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. | |||||||||
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:
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 | |||
|
feedback
|
|
Just remove the MyClass.m and .h and add them to project again is work for me. | |||
|
feedback
|
|
Not only in project settings, but in Target setting also u have to add -all_load -ObjC flags.. | |||
|
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:
| |||
|
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. | |||
|
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! | |||
|
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) | |||
|
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. | ||||
|
feedback
|