0

我通过调用在导航控制器中显示模态演示视图

[self.navigationController presentViewController:controllerA animated:YES completion:nil];

我通过调用来解散控制器A

[self.presentingViewController dismissViewControllerAnimated:YES completion:nil]

关闭完成后,前一个 navigationController 中的 UITableView 不会像调用 presentViewController 之前那样上下滚动。我需要在关闭后做些什么来让 UITableView 再次滚动。

4

1 回答 1

0

问题是我在 UITableView 中有一个标题视图,当我从 Xib 加载标题时,我需要取消选中 Xib 文件中的“使用自动布局”(在文件检查器部分中)。

向 UITableView 添加行后出现意外的滚动行为

于 2013-08-22T00:32:38.697 回答