Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个应用程序,我需要每天向用户发送大量通知。大约 5-40 取决于用户。
我正在使用本地通知来发送它,但我知道有 64 个通知限制。这是否意味着每天有 64 条通知,或者总共有 64 条通知?
这意味着同时安排未来交付。只要不重叠,您每天可以发送任意数量的邮件。
如果您添加超过 64 个请求(在 下UserNotifications)或计划(在UIApplication/下UILocalNotification),较旧的请求将被丢弃并且不会交付。
UserNotifications
UIApplication
UILocalNotification
不幸的是,iOS 将本地计划通知限制为最多 64 个。可能是为了防止此问题,可以先安排第一组通知,然后在下次启动应用程序时安排另一组通知。