Search code examples
iosobjective-cnsbundle

NSBundle is Not Loading - ObjectiveC


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

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    if(self.webViewController == nil) {
        self.webViewController = [[WebViewController alloc] initWithNibName:@"WebViewController"
                                                                     bundle:[NSBundle mainBundle]];
    }
}

Thanks.


Solution

  • I think, you have not chosen the target membership for your nib file. Tap on your nib file & check the Target membership for your nib file.