user2402616
user2402616

Reputation: 1563

Could not load NIB in bundle error

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

Answers (1)

stosha
stosha

Reputation: 2148

try check and remove line with your xib in list of the Xcode project's Build Phase (may be red color):

enter image description here

Upvotes: 1

Related Questions