【发布时间】:2014-11-21 19:32:28
【问题描述】:
我有一个 UITableViewController,我使用下面的代码显示它。它工作正常,除了我没有看到后退按钮:
UIStoryboard *storyboard = self.storyboard;
UITableViewController *svc = [storyboard instantiateViewControllerWithIdentifier:@"FindLandTableIdentifier"];
UINavigationController *navigationController = [[UINavigationController alloc]
initWithRootViewController:svc];
[self presentViewController:navigationController animated:YES completion: nil];
【问题讨论】: