Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Could not load NIB in bundle

Trying to run my app on my device and I've got the following SIGART error when I run it:

Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Could not load NIB in bundle: 'NSBundle (loaded)' with name 'ViewController''

I have very limited iOS experience and knowledge but I think it may be relating to the following code snippet in my ViewController.m

-(id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    if((self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]))
    {
        log = [[NSMutableString alloc] init];
    }

    return self;
}

Does anyone know why this is happening?

like image 869
N0xus Avatar asked Sep 26 '13 10:09

N0xus


1 Answers

To fix the problem, I did the following:

  1. Open XCode Target
  2. Go to the "Build phases" tab
  3. Click the "Copy bundle resources" section
  4. Click the add button
  5. Add the missing Nib file

Or This issue is also regarding the nib name. Check the nib name spelling, it's correct, case sensitive.

like image 186
Anand Gautam Avatar answered Sep 19 '22 08:09

Anand Gautam