有没有办法设置本地通知repeatinterval每10分钟一次。
我尝试使用
localnotification.repeatInterval = NSMinuteCalendarUnit*3;
和
localNotif.repeatInterval = 640;
它不起作用。
所以请你指导我。
Best Answer-推荐答案 strong>
正如 Mundi 所说,repeatInterval 必须是 NSCalendarUnit 并且只能包含:NSWeekCalendarUnit 、NSMonthCalendarUnit 、NSDayCalendarUnit , NSHourCalendarUnit ,..
所以每 10 分钟收到一次通知。使用 6 个每小时重复一次的通知,并在通知之间设置 10 分钟。
关于iphone - 如何每 10 分钟使用一次重复间隔?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/7024594/
|