我的应用程序是药物提示,许多客户要求我实现每天安排药物的可能性。
我知道应用程序可以设置的本地通知数量有限,那么设置此类提醒的好方法是什么?
答案 0 :(得分:1)
在通知UILocalNotification *notification = [[UILocalNotification alloc]init];
后,您需要设置通知的repeatInterval
属性。
所以:
UILocalNotification *notification = [[UILocalNotification alloc]init];
...
notification.repeatInterval = NSDayCalendarUnit;
...
[[UIApplication sharedApplication] scheduleLocalNotification:notification];
注意:使用NSDayCalendarUnit
通知会每天重复。如果你愿意,你可以使用其他常量来重复每周或其他任何事情。这个常量定义如下:
因此,如果您需要其他重复间隔,您可能需要查看。