Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I change the message in a repeating UILocalNotification?

I have a UILocalNotification that repeats every hour and I would like to change the message when it repeats so it is different, or rotates between 3 messages.

Does anyone know of a way to do this?

Also, it appears I cannot customize my repeating local notifications beyond once every minute, hour, day, etc. What I'd like is a notification every 15 minutes. I suspect that can't be done though... unless you know a way?

Many thanks for assistance you can offer.

like image 736
Jupiter869 Avatar asked Apr 29 '12 22:04

Jupiter869


1 Answers

If you wanna change the message you can acces to the scheduledLocalNotifications array in your app delegate and modify the message, but to do that you need the app to be running. I think it's better to simply schedule different notifications with the different messages you want to show.

About the repeating interval the simple answers is no, you can't create your own repeating intervals. This is one of the many limitations that UILocalNotificationhas. Many apps (included mine) had solve the problem creating a queue of notifications. I explain that topic here

like image 186
Edu Avatar answered Oct 15 '22 16:10

Edu