我通过调用在导航控制器中显示模态演示视图
[self.navigationController presentViewController:controllerA animated:YES completion:nil];
我通过调用来解散控制器A
[self.presentingViewController dismissViewControllerAnimated:YES completion:nil]
关闭完成后,前一个 navigationController 中的 UITableView 不会像调用 presentViewController 之前那样上下滚动。我需要在关闭后做些什么来让 UITableView 再次滚动。