IOS source selection for local notifications

I have 8 local display notifications that differ day by day.

They work great for one day, but I want to run them every day. I used BackgroundFetch to migrate local notifications every time a fetch is performed. But my problem is that background fetching depends on how often the user uses the application. What to do if the user does not open the application more often. Also, I did not want to enter silent notifications, because it will not wake the application if the user does not have an Internet connection. which approach should be used instead of background fetching?

EDIT:

I also thought about updating the location in the background, because the time of my notification is taken from the user's location and calculated accordingly. But will it consume a lot of battery?

+8
ios objective-c push-notification uilocalnotification
source share
1 answer

Since I have the same problem in an application that probably does the same thing as yours, I would like to share my solution.
It comes with one compromise, only s> = iOS8. Using interactive notifications, you can transfer your notifications in the background, of course, the user needs to interact with the notification, but I think that if you do not open the application or cancel the notification, you may have more interested user. <Marka> Everything about creating a configuration with actions.
Here you can find a tutorial.

+1
source share

All Articles