I am writing a application that has two main views. The first is the main screen and the second is a UITableViewController and is populated with a array to display history of the user. The TableView loads fine and populates fine, the problem is when I go to open the main View Controller back up. If I use:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath
{
ViewController *myView;
myView = [[ViewController alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:myView animated:YES];
}
The ViewController shows up but the screen is black!
If I use:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath
{
ViewController *myView;
myView = [[ViewController alloc] initWithNibName:@"ViewController" bundle:[NSBundle mainBundle]];
[self presentModalViewController:myView animated:YES];
}
The application crashes and tells me:
* Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Could not load NIB in bundle: 'NSBundle (loaded)' with name 'ViewController'' * First throw call stack: (0x30f0a88f 0x35fdb259 0x30f0a789 0x30f0a7ab 0x318a434b 0x318123c7 0x316efc59 0x31665c17 0x31670267 0x316701d5 0x3170f59b 0x3170e367 0x317696a7 0x36dc1 0x316de93d 0x31758627 0x3094d933 0x30edea33 0x30ede699 0x30edd26f 0x30e604a5 0x30e6036d 0x3129f439 0x3165acd5 0x3465b 0x34600) terminate called throwing an exception(lldb)
I am really new to application programming for the iPhone and iPad, but I thought this would be a fairly simple task. I have switched views before in other applications but this one is just not working. Please help!!!
UITableViewControllerget put onto the screen? (The meta-answer to your question is to reverse whatever that was so that you go back to your main screen instead of trying to duplicate it.) – Phillip Mills Jul 3 '12 at 14:38