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?
To fix the problem, I did the following:
Or This issue is also regarding the nib name. Check the nib name spelling, it's correct, case sensitive.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With