点击tabBar时刷新tableView
当我单击 tabBar 中的相关按钮时,我只想刷新我的 tableView(在 iPhone 上)...
所以,我认为必须这样做:
[self.tableView reloadData];
对吗?并在
(void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
但我不知道如何从 tabBar 控制器将消息 reloadData 发送到 tableView...你能帮我吗?
I want simply to refresh my tableView (on the iPhone) when I click on the related button in the tabBar...
So, I think this has to be done this way :
[self.tableView reloadData];
Right ? And done in the
(void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
But I don't know how can I send the message reloadData to the tableView from the tabBar controller... Could you help me please ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
UITableViewController
类中,实现viewWillAppear
方法并从那里调用reloadData
。In your
UITableViewController
class, implement theviewWillAppear
method and callreloadData
from there.