Why doesn't it show a notification after the button has been pressed?
If the fireDate was NSDate(timeIntervalSinceNow: 10)
it would work fine
How can i get notifications from an array?
@IBAction func buttonPressed(sender: AnyObject) {
var stringDate = dateFormatter.stringFromDate(timePicker.date)
alarmArray.append(stringDate)
let fixedAlarmArray = alarmArray
NSUserDefaults.standardUserDefaults().setObject(fixedAlarmArray, forKey: "alarmArray")
NSUserDefaults.standardUserDefaults().synchronize()
//Local Notification
var localNotification:UILocalNotification = UILocalNotification()
localNotification.alertAction = "Go to app"
localNotification.alertBody = "Its Time!"
localNotification.fireDate = timePicker.date
localNotification.timeZone = NSTimeZone.defaultTimeZone()
UIApplication.sharedApplication().scheduleLocalNotification(localNotification)
self.view.endEditing(true)
}
you should use localtimeZone and set it before setting the fireDate
Note:
do like this:
create an extension to combine the time picked with 0 seconds as follow:
then just use it as follow: