didReceiveRemoteNotification - 在当前视图控制器中调用函数

发布于 2024-12-05 16:19:47 字数 55 浏览 0 评论 0原文

当我收到推送通知时,如何触发当前视图控制器(当前用户查看)的功能。

提前致谢..

How can i fire a function of a current view controller(currently user viewing) when i receiving a push notification.

thanks in advance..

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

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

发布评论

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

评论(1

睡美人的小仙女 2024-12-12 16:19:47

最好的方法是,在应用程序委托的方法中处理删除通知,使用 NSNotificationCenter 发送通知,

[[NSNotificationCenter defaultCenter] postNotification:@"remoteNotification" withObject:whateverYouWantHere];

然后使用 NSNotificationCenter 添加任何感兴趣的 UIViewController 作为“remoteNotification”名称的观察者。

The best method is to, in your app delegate's method to handle the remove notification, send out a notification using NSNotificationCenter

[[NSNotificationCenter defaultCenter] postNotification:@"remoteNotification" withObject:whateverYouWantHere];

Then use the NSNotificationCenter to add any interested UIViewController's as an observer for the "remoteNotification" name.

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