重新加载 uiviewcontroller

发布于 2024-10-31 17:43:46 字数 179 浏览 5 评论 0原文

我使用 UINavigationController 在 UIViewController 之间进行导航。 但遇到了一些问题,我无法找到解决方案。

问题来了—— 当我导航回父控制器时,父控制器中的表应该重新加载。 我在应用程序中使用了 Interface Builder。 请帮助解决这个问题。

提前致谢...

Am using UINavigationController for navigation between UIViewControllers.
But got some problem, and am not able to get solution for that.

Here comes the issue -
When I navigate back to parent controller, the table in parent controller should get reloaded.
I used Interface Builder in the application.
Please help in this issue.

Thanks in advance...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

眉目亦如画i 2024-11-07 17:43:46

使用 UINavigationController 时,您可以使用 UINavigationControllerDelegate 方法

- (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated

- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated

在这两个方法中,您可以手动调用 viewWillAppear 和 viewDidAppear。

When using a UINavigationController, you may use the UINavigationControllerDelegate methods

- (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated

- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated

Within both of those methods, you could call the viewWillAppear and viewDidAppear manually.

做个ˇ局外人 2024-11-07 17:43:46

您可以使用第一个视图控制器的 viewDidAppearviewWillAppear 方法,并将重新加载代码放在那里。

You could use the viewDidAppear or viewWillAppear methods of the first view controller and put your reload code there.

ゞ花落谁相伴 2024-11-07 17:43:46

使用 - (void) viewWillAppear 方法来执行此操作。在这里您可以放置​​视图加载时要重新加载的所有方法调用。

Use the - (void) viewWillAppear method in order to do this. Here you can put all the method calls that you want to reload when the view is loaded.

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