弹出和推送同一视图不会调用 viewWillAppear() 方法

发布于 2024-11-19 14:45:58 字数 467 浏览 1 评论 0原文

当我收到本地通知时,我会执行以下操作:

- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notif {
    [navController popToRootViewControllerAnimated:NO];
    [navController pushViewController:notificationSplashViewController animated:YES];
}

如果我的 notificationSplashViewController 是当前 ViewController,则不会调用其 viewWillAppear() 方法。如何检测 notificationSplashViewController 的重新推送?

When I receive a local notification i do the following:

- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notif {
    [navController popToRootViewControllerAnimated:NO];
    [navController pushViewController:notificationSplashViewController animated:YES];
}

If my notificationSplashViewController is the current ViewController, its viewWillAppear() method is not invoked. How can I detect the re-push of notificationSplashViewController?

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

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

发布评论

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

评论(1

东北女汉子 2024-11-26 14:45:58

尝试一下:

[notificationSplashViewController.view removeFromSuperview];
[navController popToRootViewControllerAnimated:NO];
[navController pushViewController:notificationSplashViewController animated:YES];

对我来说,这成功了。

Try:

[notificationSplashViewController.view removeFromSuperview];
[navController popToRootViewControllerAnimated:NO];
[navController pushViewController:notificationSplashViewController animated:YES];

for me, this did the trick.

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