我有一个nsdates数组,我想在时间与当前时间匹配时为每个nsdates创建一个通知。
到目前为止,我有这个for item in stuffThree {
print("test")
var notification:UILocalNotification = UILocalNotification()
notification.category = "test1"
notification.alertBody = "test2"
notification.fireDate = item
print(item)
UIApplication.sharedApplication().scheduleLocalNotification(notification)
}
截至目前,我没有得到任何东西。我所做的是提前一分钟创建一个日期然后让时间滴答并等待,没有任何反应。
有什么想法吗?
答案 0 :(得分:2)
一些建议:
/public/users
git clean -fd
notification.alertBody = "Test"
和\ n检查您的输出
打印(localNotification.timeZone = NSTimeZone.defaultTimeZone()
)答案 1 :(得分:1)