In my app there is a PointMode
button. When I click on it 10 to 11 time there is no problem and the view will appear. But then after, it produces this error:
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Could not load NIB in bundle: 'NSBundle < Simulator/4.1/Applications/04DF6214-383F-43DA-B2D2-C5B538B0095B/PW.app> (loaded)' with name 'PWPointMode''
I call that view like this.
PWPointMode *pointController = [[PWPointMode alloc]initWithNibName:@"PWPointMode" bundle:nil];
self.objPointMode = pointController;
[self.navigationController pushViewController:objPointMode animated:YES];
[pointController release];
my application is universal app