我有一个UITableView
我想让用户单击单元格并使用子视图来显示详细信息。我试过这个方法:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
SubMainViewController __autoreleasing *mSubView = [self.storyboard instantiateViewControllerWithIdentifier:@"mainSubView"];
[self presentViewController:mSubView animated:YES completion:nil];
}
这似乎有效,但是,我无法回到我的表格视图,有人可以帮我吗?