Is it possible to to call didReceiveLocalNotification without displaying Alert when in background?
Is it possible to to call didReceiveLocalNotification without displaying Alert when in background?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
didReceiveLocalNotificationwill only be called if you app is in the foreground or when the user clicked to view the notification and you app is restored to the foreground from the background.You might be able to use a
UILocalNotificationwith out a message, by example update your application icon badge. But then thedidReceiveLocalNotificationwill not be called if you apps in not the in foreground.