UILocalNotification 的自定义重复间隔
我尝试了 Re.minder 应用 并注意到它可以按自定义间隔重复提醒(例如每 3 分钟、每 2 小时、每 4 天……)。
我怎样才能做到这一点?
I tried the Re.minder app and noticed that it can repeat reminders with custom intervals (such as every 3 minutes, every 2 hours, every 4 days,...).
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
感谢您尝试我们的应用程序!事实证明,我们实际上并没有使用 UILocalNotification RepeatInterval 来实现这一点。鉴于它的局限性(只有一个 NSCalendarUnit),我们实际上编写了自己的调度程序。这有其自身的限制,主要是每个应用程序 64 个本地通知队列限制。我们本质上是安排并构建我们自己的队列,然后从中填充本地通知。每当用户启动或更改应用程序时,我们都会重新安排。
希望有帮助!
Thanks for trying our app! It turns out, we're not actually using UILocalNotification repeatInterval to accomplish that. Given it's limitations (only one NSCalendarUnit), we actually wrote our own scheduler. This has it's own limitations, mainly the 64 local notification queue limit per app. We essentially schedule and build our own queue, then fill the local notifications from that. Any time the user launches or makes a change in the app we reschedule.
Hope that helps!