重新加载放置在 tabBar 中的 tableView 数据
我有一个 tabBarController,在一个选项卡中我有一个管理表视图的导航控制器。 TableView 可以工作,但是如果在我
viewWillAppear
的 tableVieW 类中我添加
[self.table reloaddata];
什么都不会出现。
我哪里错了?在 tableView 类中重新加载 tableview 是正确的,还是我必须从另一个地方调用重新加载?
i've a tabBarController, in one tab i've a navigation controller that manage a table view. TableView works, but if in my
viewWillAppear
of the tableVieW class i add
[self.table reloaddata];
nothing appear.
where i'm wrong? it's correct to reload tableview in tableView class or i must call the reload from another place?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保为
self.table
设置了UITableViewDataSource
委托。如果未设置数据源,或者其count
不大于0,则表中不会显示任何内容Make sure
UITableViewDataSource
delegate is set forself.table
. If no data source is set, or if itscount
is not more than 0, nothing will appear in your table