重新加载 tabbarviewcontroller
我有一个标签栏视图控制器,我知道使用导航控制器您可以重新加载应用程序,以便显示更新。这可以通过标签栏视图控制器实现吗?我基本上希望当我单击返回选项卡时它刷新屏幕,而不是必须旋转屏幕才能显示新的更新。
i have a tabbar view controller and I know with a navaigation controller you can reload the application so updates are shown. Is this possible with a tabbar view controller? I basically want it to refresh the screen when i click back into the tab instead of having to rotate the screen to get the new updates to show.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以实现
UITabBarControllerDelegate
方法didSelectViewController:
并调用所选 viewController 的loadView:
或用于加载/更新所需视图的任何方法刷新(也许viewWillAppear:
或类似的)。You can implement the
UITabBarControllerDelegate
methoddidSelectViewController:
and call the selected viewController'sloadView:
or whatever method you use to load/update the view you want to refresh (maybeviewWillAppear:
or similar as well).