ios 阻止本地通知是否被视为有害?

Is ios blocking local notifications considered as harmful?

我有一个用 phonegap 制作的应用程序,它使用第三方插件来显示本地通知。 (https://github.com/katzer/cordova-plugin-local-notifications) 我将它部署在我的设备上,一开始它运行良好。然而,在应用程序发送了数十条通知(非常频繁且文本相同)后,我的 iphone 开始不显示通知。我尝试删除该应用程序,然后再次部署,然后再次弹出确认对话框以允许来自该应用程序的通知,但它们仍然没有出现。 当我将它部署在其他设备上时,它再次运行良好,在模拟器中也是如此。 ios 是否有可能以某种方式阻止了来自此应用的通知,因为它认为它们是 harmful/spam?

计划通知的最大数量为 64。如果达到最大值,则无法在不删除旧通知或触发计划通知后添加更多本地通知。

苹果documents中提到如下

Each app on a device is limited to 64 scheduled local notifications. The system discards scheduled notifications in excess of this limit, keeping only the 64 notifications that will fire the soonest. Recurring notifications are treated as a single notification.

有一个限制 64 scheduled notifications per app,因此,如果您安排更多 - 只有前 64 个会到达。

Each app on a device is limited to 64 scheduled local notifications. The system discards scheduled notifications in excess of this limit, keeping only the 64 notifications that will fire the soonest. Recurring notifications are treated as a single notification.

但是,有一种方法可以确保所有 64 个都已安排 - 只需通过 64 个通知将它们打包传递。 查看 this answer 了解更多信息。