UILocalNotification 最大差异
在 Apple 的本地和推送通知编程指南中,它说:
设备上的每个应用程序都是 仅限于最快发射的64 预定的本地通知。这 操作系统丢弃 超过此限制的通知。 它考虑重复通知 成为单个通知。 链接
但是,在iOS应用程序编程指南中,它说
清单 4-3 显示了一个示例 使用日期安排单个警报 以及用户设定的时间。这 示例仅配置一个警报 时间并取消之前的闹钟 在安排新的之前。 (你自己的 应用程序的数量不能超过 128 随时激活本地通知 给定时间,其中任何一个都可以 配置为在指定的时间重复 间隔。) 链接
以下哪一项是正确的?我收到 64 条通知还是 128 条通知?
In Apple's Local and Push Notification Programming Guide, it says:
Each application on a device is
limited to the soonest-firing 64
scheduled local notifications. The
operating system discards
notifications that exceed this limit.
It considers a recurring notification
to be a single notification. LINK
However, in the iOS Application Programming Guide, it says
Listing 4-3 shows an example that
schedules a single alarm using a date
and time that is set by the user. This
example configures only one alarm at a
time and cancels the previous alarm
before scheduling a new one. (Your own
applications can have no more than 128
local notifications active at any
given time, any of which can be
configured to repeat at a specified
interval.) LINK
Which of these is true? Do I get 64 notifications or 128 notifications?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后我做了一个测试,答案是64条本地通知。
I finally did a test, and the answer is 64 local notifications.