When i use the method insertSubview:atIndex: on my iPhone the program fails to run, with EXC_BAD_ACCESS in the main.m file. However, when i use presentModalViewController the program runs perfectly.
Also, the method switchToView works when its first used, with a different to and from, but the second time it doesn't.
What is going wrong?
Here is my code:
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
ShowBookDetails *sbd = [[ShowBookDetails alloc] initWithNibName:@"ShowBookDetails" bundle:nil];
[self switchToView:sbd from:self];
}
My method look like:
-(void)switchToView:(UIViewController*)nextView from:(UIViewController*)currentView
{
[currentView.view insertSubview:nextView.view atIndex:1];
}