当我的应用程序通过推送打开时执行哪个回调

发布于 2024-11-15 18:33:01 字数 57 浏览 1 评论 0 原文

您好,我想知道当我的应用程序从推送通知启动时会调用哪个应用程序委托方法(当应用程序以前位于后台时?)

Hi there i would like to know which app delegate method get called when my app launch from a push notification (When the app was previously in the background ?)

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

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

发布评论

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

评论(3

不交电费瞎发啥光 2024-11-22 18:33:01
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo

另请检查​​此答案。

- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo

Also check this answer.

筱武穆 2024-11-22 18:33:01

在您的 AppDelegate 中实现 didReceiveLocalNotification: 方法。

- (void)application:(UIApplication *)app didReceiveLocalNotification:(UILocalNotification *)notif {

    // Handle the notification here
}

Implement the didReceiveLocalNotification: method in your AppDelegate.

- (void)application:(UIApplication *)app didReceiveLocalNotification:(UILocalNotification *)notif {

    // Handle the notification here
}
水波映月 2024-11-22 18:33:01

检查 UIApplicationDelegate 的文档

Check the documentation of UIApplicationDelegate

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