uilocalnotification

Firing a timer in a background app and showing UILocalNotifications

I've written an iPhone app to display available bandwidth for my satellite modem, but I'm interested in allowing the timer to continue to fire in the background (though with much greater time between ticks) and display UILocalNotifications during events such as reaching a 20% remaining limit. I think the answer to this is "You can't", bu...

iphone resume application on UILocalNotification

I've managed to get the application I'm writing to present a UILocalNotification when it is in the background. Though when the application resumes, the user interface becomes inactive. Is anyone aware of how to get the application responding again having resumed from the background state? Thanks, Matt. ...

How to play a sound loop when an alert is displayed using UILocationNotification

Sound only played once when an alert is displayed using UILocationNotification.How to play a sound loop when an alert is displayed in background like Clock.app. ...

UILocalNotification Problem

i have a local notification that I would like to fire every 5 minutes. I use: localNotif.repeatInterval=NSMinuteCalendarUnit that will have the notification happen once every minute. I can't figure out how to get this to happen every 5 minutes or whatever other >1 minutes interval. I've tried localNotif.repeatInterval=5*NSMinuteCalendarU...

Is there a simple way to edit / modify a UILocalNotification

Is there an easier way to edit, for example, the alertBody property of an already scheduled UILocalNotification ? For now, I just cancel the notification and schedule a new one but when the app needs to do this for 3 or more notifications, it takes long time to execute... ...