uitableview 委托方法未被调用
我遇到的问题是,第一次显示表视图时不会调用表视图方法。 如果我切换回前一个视图,然后单击按钮再次显示表视图,这次将调用这些方法。
我应该说我在加载表格视图时显示了一个操作表。 我在 ViewWillAppear 方法中调用的操作表。
I've got the problem that tableview methods are not called the first time the tableview is shown.
If I switch back to the previous view, and then click the button to show the tableview again, the methods are called this time.
I should say that I show an actionsheet while the tableview is loading.
The actionsheet I call in the ViewWillAppear method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过在关闭操作表后添加 [self.tableView reloadData] 来修复它。我不知道这是否是正确的方法,但它确实有效。
i fixed it by adding [self.tableView reloadData] after dismissing the actionsheet. i don't know if it's the proper way, but it somehow works.