我可以自定义 UILocalNotification 重复间隔(即仅限工作日吗?)
我希望能够安排 UILocalNotification 在每天的同一时间重复,但仅限于工作日(没有周六或周日)。使用 UILocalNotification 的重复间隔功能是否可以实现这一点,或者是我创建某种处理时间和日期并计算出何时提前安排(多个)通知的类的唯一选择?
提前致谢。
I would like to be able to schedule a UILocalNotification to repeat at the same time every day, but only on weekdays (no Saturdays or Sundays). Is this possible using the repeat interval feature of UILocalNotification, or is my only option to create some kind of class that handles the time and date and works out when to schedule (several) notifications in advance?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。将 UILocalNotification 的
repeatInterval
设置为NSWeekdayCalendarUnit
。这是 可用的
repeatIntervals
列表。Yes, this is possible. Set the
repeatInterval
of the UILocalNotication toNSWeekdayCalendarUnit
.Here's a list of available
repeatIntervals
.