You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to show a message to tell user that uploading file is finished.
But it did not show.
The source is following.
net.POST(url, params: params, successHandler: {responseData in
let localNotification = UILocalNotification()
localNotification.alertBody = "finished!"
UIApplication.sharedApplication().presentLocalNotificationNow(localNotification)
}, failureHandler: { error in
// 失敗
let localNotification = UILocalNotification()
localNotification.alertBody = "error!"
UIApplication.sharedApplication().presentLocalNotificationNow(localNotification)
})
The text was updated successfully, but these errors were encountered:
I want to show a message to tell user that uploading file is finished.
But it did not show.
The source is following.
net.POST(url, params: params, successHandler: {responseData in
let localNotification = UILocalNotification()
localNotification.alertBody = "finished!"
UIApplication.sharedApplication().presentLocalNotificationNow(localNotification)
}, failureHandler: { error in
// 失敗
let localNotification = UILocalNotification()
localNotification.alertBody = "error!"
UIApplication.sharedApplication().presentLocalNotificationNow(localNotification)
})
The text was updated successfully, but these errors were encountered: