Reputation: 1563
I have an application that was initially working although I got a "could not find xxx.nib file" or something of that sort. This was because I deleted the .xib file from the project and xcode was still looking for it. The error annoyed me and so I fixed it by cleaning the project, resetting the simulator, and deleting all the cache files in ~/var/xcode/... That fixed the error but now I am receiving NSInternalInconsistencyException', reason: 'Could not load NIB in bundle: 'NSBundle
Upvotes: 1
Views: 442
Reputation: 2148
try check and remove line with your xib in list of the Xcode project's Build Phase (may be red color):
Upvotes: 1