Reputation: 75
So I got a little problem here. My App needs to fire notifications everyday at the same time. It does this now by the code that's inside the application.
However, I want to schedule these notifications on my server and then schedule them on the device until it's time to go off. I've read about Push notifications and also that they are unreliable as an alarm so I guess that's not a good idea.
So my question is, is it possible to make the App read the times from a server and then schedule them locally?
Upvotes: 2
Views: 159
Reputation: 7615
Yes, just use UILocalNotification
. You don't need to involve push notifications.
Upvotes: 1