I'm working on an alarm/reminder application and want to show a custom alarm view when specified time is reached.

From what I understand, there are various (real and hypothetic) ways of doing it:

  1. UILocalNotification. It would be perfect, but alert customization features are insufficient, e.g. I can't show a custom alert view, I can't play a sound for more than 30sec etc.
  2. Keep application in the background and use NSTimer or other means to schedule execution after some time. Most likely won't work as the app may be killed any time.
  3. Start my app at specified time to receive the notification. As far as I know it's not allowed at all.

After spending several days searching for a solution, I would give up and stick with UILocalNotification, but I DO know an app that shows custom alert view at specific time AND is available in AppStore. The app is named "Alarmed" and from what it looks like (last app view shown on alarm time before an actual alert; alarm still triggers even after the device is restarted) they found a way to start their app at specific time and still pass Apple's review.

Any ideas how this can be done? Thanks.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

It's not possible to show notifications other than what UILocalNotification offers you, unless the app is running in the foreground. (I just tried to install "Alarmed" and it uses a regular UILocalNotification like you'd expect).

link|improve this answer
1  
It's strange, as it shows custom full-screen alert for alarms for me. Can it be because my device is jailbroken? – Alexander Boiko Jun 21 '11 at 11:16
Also, it does use regular UILocalNotification for reminders, but it's custom for alarms. – Alexander Boiko Jun 21 '11 at 11:26
It must be because your device is jailbroken. The alarms also just show a UILocalNotification, but once the app is launched it shows a full screen alarm view. – Morten Fast Jun 21 '11 at 11:41
For me it shows full screen alarm view automatically. I guess the only reason is jailbreak. Thank you for you answers! – Alexander Boiko Jun 21 '11 at 11:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.