Thank you
Thank you
OK, you’re mixing up terms here. When Apple folks say silent notification we mean a notification with no user interface at all, that is, no alert, no sound, no badge. Such notifications are delivered to your app and can be used by your app to update its state in the background. AFAIK this only supported for remote notifications.I didnt want to have the local notification that appears at the top of
the screen, then disappears.
How would your background task inform the user of this event? You can’t present a UI from the background, or play a sound, so your only option would be to post a notification. In that case you might as well cut out the middle man.you cannot use it to trigger a background task to inform a user
without visually showing the notification itself.
If I may, I have similar situations that would like to ask. I want to be able to execute some codes from background task whenever there are changes in Eventstore (calendar/reminder). I need to update data in my app (and my widget) when this change happen. How can I do this? I can't figure out how to listen to notification from Eventstore in the background.
Thank you very much, Boon
I want to be able to execute some codes from background task whenever there are changes in [
EKEventStore
]
EventKit has no mechanism to resume your app in the background when the store changes.
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"