I am working on an alarm application and I am using local notification for that. Now I want to add snooze functionality to my alarm. I searched on Google and found that iPhone doesn't support such functionality.

But is there another way to do this?

link|improve this question

1  
'I searched on Google and found that Apple doesn't...' this is funny, isn't it? – jv42 Jun 1 '11 at 8:12
@jv42:Can you please explain? – Yogi Jun 1 '11 at 8:40
Google is the main competitor to Apple in the smartphone business... – jv42 Jun 1 '11 at 9:48
really funny:D.I thought it's something related to grammer...Can you help me regarding my problem – Yogi Jun 1 '11 at 10:43
nope, else I'd have posted an answer ;) – jv42 Jun 1 '11 at 11:15
show 4 more comments
feedback

2 Answers

up vote 1 down vote accepted

AFAIK you can't add a custom behaviour when the notification windows pops up. BUT... You can try it like this: after the user has clicked "View" and the app is launched by an UILocalNotification, you could open a modal view with a huge button "Snooze" and another (smaller) one "Open". And if the user taps "Snooze" you just schedule another local notification and close the app.

What about that?


PS: A couple of days ago I've worked the first time with these local notifications. I had to design a class which can be used universally. A method for implementing snooze would be cool! I'll write you again, if I get a better solution. But please tell me (and other) in this forum, If you have found a good solution.

link|improve this answer
I am also using the same method...will,definitely update you if found something better:) – Yogi Jun 6 '11 at 4:45
1  
If you want to be troublesome.... schedule multiple alarms or a repeating alarm, one for 5 minutes, one for 10 minutes, another for 15 minutes, etc. Each separated by your snooze interval. Then, when you finally get the 'all right shut up already' from the user, pear into the future and cancel all the previously scheduled notifications before they alert. This makes snooze essentially the default action, instead of the other way around. – slf Mar 22 at 19:31
Hi Bambam, did you find any better solution? – AppleDeveloper Mar 26 at 17:58
feedback

Read This articles:

  1. About Local Notifications and Push Notifications
  2. Local Notification Sample Code (OS 4.0 only)
  3. Repeating an iOS local notification
  4. Local Notifications
  5. iPhone Tutorial: Scheduling Local Notifications using a Singleton class

I think you can user Local Notifications for your alarm application ...

link|improve this answer
What you suggest here is to schedule repeating notifications. This is not what he's trying to do. Snoozing is a missing feature, and solutions are always hard to find ... – marzapower Jun 1 '11 at 8:22
You want to create something like standard alarm application on iPhone ? – ViTo Brothers Jun 1 '11 at 8:26
I don't. Probably @Yogi does! :D I think he's looking for something like a standard alarm, snoozable. – marzapower Jun 1 '11 at 8:33
@ ViTo Brothers Apoyan:Yes,it should be a snoozable alarm. – Yogi Jun 1 '11 at 8:38
@ ViTo Brothers Apoyan:I gone through the articles suggested by you but couldn't find explanation for snooze functionality. – Yogi Jun 1 '11 at 8:46
feedback

Your Answer

 
or
required, but never shown

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