我想運行UILocalNotifications和重複,每2分鐘。爲此我做:爲什麼UILocalNotifications不會重複?
let reminderNote: UILocalNotification = UILocalNotification()
reminderNote.fireDate = NSDate(timeIntervalSinceNow: 60 * 2)
reminderNote.repeatInterval = NSCalendarUnit.Hour
reminderNote.alertBody = "some text"
reminderNote.alertAction = "View"
UIApplication.sharedApplication().scheduleLocalNotification(reminderNote)
它運行它只是一次,後來它沒有。
我想這是因爲這行:
reminderNote.repeatInterval = NSCalendarUnit.Hour
我怎麼能重複我的通知每1.5或2小時?
[UILocalNotification重複時間間隔自定義警報(太陽,星期一,星期三,星期四,星期五,星期五,星期六)可能的重複](http://stackoverflow.com/questions/6966365/uilocalnotification-repeat-interval-for-自定義報警陽光週一週二,週三,週四-F) –
@OlegGordiichuk這些帖子不幫我,所以這就是爲什麼我已經打開了一個新問題 –
也許你可以安排它調用的方法中的通知, ,安排另一個... –