Reputation: 203
I have just upgraded to Xcode 4.3.1 and SDK 5.1. My project uses storyboard but has one nib/xib file. After the upgrade the compile fails with:
/* com.apple.ibtool.errors */
/Users/jhn/Udvikling/Projekter/rmtelemedicin/RMTeleMedicin/RMTeleMedicin/MenuViewController.xib: error: Interface Builder is unable to open documents of type iPad XIB.
Recovery Suggestion: Ensure the plugin for the iPad XIB document type, from the corresponding SDK, is installed.
Any one seeing the same problem?Any help would be appreciated.
Upvotes: 12
Views: 1864
Reputation: 24597
To fix this:
That should fix it
Upvotes: 0
Reputation: 273
I had this problem too. I just created a new project and copied all the source/xib/resources files to the new project. Hope it helps someone
Upvotes: 0
Reputation: 12257
I figured it out!
Go to your project settings, and delete the line that says Interface Builder Plugin search path or something similar.
the exact line in project.pbxproj is:
IBC_PLUGIN_SEARCH_PATHS = "${PROJECT_DIR}/**";
That's it.
Upvotes: 17