推送通知接收和处理

发布于 2024-08-06 10:48:15 字数 194 浏览 4 评论 0原文

我有两个问题。

  1. 我实现了通知,安装在我的手机中,但是当我从提供商发送通知时,我没有收到任何通知。但当我使用另一部手机时,我会收到通知。有没有接收通知的设置?

  2. 在我的代码中的何处,我必须实现在单击通知警报上的“查看按钮”时必须运行的代码?

    在我的代码中的何处,我必须实现在单击通知警报

I have two problems.

  1. I implement notification, install in my phone but when I send notification from provider, I didn't receive any notification. But when I use another phone I receive notification. Is there any setting for receiving notification?

  2. Where in my code I must implement code that must run when I click on "View button" on notification alert?

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

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

发布评论

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

评论(1

晨与橙与城 2024-08-13 10:48:16

1) 一旦安装了接受通知的应用程序,iPhone 首选项中的“Wi-Fi”下方就会出现一个“通知”项目。

2) 除了启动时的标准 APS 注册之外,没有其他任何具体内容。在应用程序的基础上,应用程序可能需要连接到服务器以提供已收到通知且应用程序已运行的反馈。

该应用程序应该使用:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

- (void)applicationDidFinishLaunching:(UIApplication *)application

1) Once there is an app installed that accepts notifications there will be a "Notifications" item in the iPhone Preferences just under "Wi-Fi".

2) There is nothing specific other than the standard APS registration on startup. On an application basis the app may want to connect to the server to provide feedback that the notification was received and the app was run.

The app should be using:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

Not

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