重新加载放置在 tabBar 中的 tableView 数据

发布于 2024-10-18 12:14:37 字数 276 浏览 3 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

高跟鞋的旋律 2024-10-25 12:14:37

确保为 self.table 设置了 UITableViewDataSource 委托。如果未设置数据源,或者其count不大于0,则表中不会显示任何内容

Make sure UITableViewDataSource delegate is set for self.table. If no data source is set, or if its count is not more than 0, nothing will appear in your table

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文