我正在DetailView
通过我的表视图的委托类推送视图控制器 ( ) MyClass
。
MyClass
充当MasterView
. 我试图DetailView
从“didSelectRowAtIndexPath:”方法推送,MyClass
但每次DetailView
按下返回的后退按钮都MasterView
被禁用。
我的视图推送代码:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if (!detailViewController) {
detailViewController = [[DetailViewController alloc] init];
}
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
[appDelegate.navigationController pushViewController:detailViewController animated:YES];
}