Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
907 views

iOS 5: Can I have my app “In Notification Center” by default?

I have an iPad app in the App Store whose logic relies largely on local notifications. In other words, much that happens inside the app is triggered by the delegate method application ...
9
votes
7answers
3k views

Test if app did become active from a UILocalNotification

Is there a way to know if the application did become active from a local notification? I know there is a way to test if the application was launched from a local notification alert; but if it just ...
6
votes
5answers
869 views

Set default iOS local notification style for application

Starting with iOS 5, there are two notification styles: banner and alert (the "old" style). A user can set which style to use for each application in the settings. However, the default now seems to be ...
5
votes
2answers
87 views

Are scheduled UILocalNotifications part of iOS device backup?

I mean, our app schedules a couple of local notifications. User makes a backup of the system and restores it on a new device. Will previously scheduled local notifications fire on the new system, or ...
5
votes
3answers
549 views

UILocalNotifications playing Custom sound

I implemented local notification in my app but I am just wondering is there a way to play a sound that is not part of the main bundle of iPhone App. Basically in my app, I want user to record a sound ...
5
votes
3answers
5k views

How to set Local Notification repeat interval to custom time interval?

I am making an iPhone app, which has a requirement of Local Notifications. In local notifications there is repeatInterval property where we can put the unit repeat intervals for mintute, hour, ...
4
votes
2answers
145 views

Create Intervals of weeks in UILocalNotification along with cycle

I am making app which is using UILocalNotification. I want to know how to make gaps in UILocalNotification i.e. how could I schedule alarm for 4 weeks(repeat daily or once in every other day) and off ...
4
votes
1answer
939 views

UILocalNotification iOS5 issue (no alert shown)

Is it only me or did Apple break the UILocalNotification mechanism in iOS5 (GM + public release)? It seemed to work fine in the betas but since GM only the sound plays back, no alert is shown (yes I ...
4
votes
4answers
483 views

PhoneGap / iOS LocalNotification App Crashes on tapping “View”

I'm having trouble here: I have the app set to not run in the background, and I'm setting a dailyInterval localnotification using a localNotification plugin I found on github here: ...
4
votes
2answers
589 views

Snooze local Notification

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 ...
4
votes
1answer
1k views

Customizing UILocalNotification's alert

I have to change the alertView of UILocalNotification. How can i achieve this. Also i want to know how to assign the LocalNotification repeat only for specific days? Ex: Mon,Tue,Fri. Regards, Anand ...
3
votes
3answers
360 views

UILocalNotifications plays sound in Simulator but not on Device

I'm just trying to include a UILocalNotification into my newest app. Everything works well, but the sound doesn't do what I want. I included a ringtone called "Electro.caf" the sound plays on my ...
3
votes
1answer
567 views

non-fixed repeatInterval in UILocalNotification

I've been cracking my head on this one for weeks now. What happens if I set the repeatInterval property of a UILocalNotification to be a non-fixed interval? (by non-fixed I mean units such as ...
3
votes
3answers
808 views

iPhone: Incrementing the application badge through a local notification

is it possible to increment the application badge through a local notification while the app is not running? I know how to set the badge, but haven't found any way to increment this value. ...
3
votes
1answer
403 views

How can I dismiss UILocalNotifications that appear when my app is in the background?

I'm working on an iPhone app that needs to remind a user to check in at regular intervals using UILocalNotifications. If they don't check in for a few hours, they may be reminded a couple times, but I ...
3
votes
1answer
397 views

Is there a way to know when an app is deleted in iOS?

my problem is this: I have scheduled some UILocalNotifications on an iOS app, the problem is that if I delete the app without deleting the objects associated with the notifications (and ...
3
votes
2answers
585 views

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 ...
3
votes
2answers
2k views

local notification “didReceiveLocalNotification” calls twice

I am handling local notifications using: - (void)application:(UIApplication *)app didReceiveLocalNotification:(UILocalNotification *)notif And to schedule a local notification: - ...
2
votes
1answer
47 views

UILocalNotification - Notification not displaying

I'm having issues when trying to schedule a UILocalNotification using the following code: - (IBAction) createNotification { //Just to verify button called the method ...
2
votes
1answer
54 views

Check if your iPhone has any pending UILocalNotifications

I'm doing some development on my iPhone involving UILocalNotifications, and I'm wondering if how to check if any are pending on my phone, and if so, if I'm able to edit or delete them. Thanks!
2
votes
2answers
209 views

How do you set applicationIconBadgeNumber with scheduleLocalNotification?

I am having some difficulties setting the icon badge with a schedule local notification for my ios application. I am able to trigger a local notification pop up after 10 seconds when I click the home ...
2
votes
1answer
105 views

DidReceivedLocalNotificaiton not called when localNotification.alertBody is commented

I have following line of code to generate local notification after every 1 minute (For Testing), It works perfectly in following condition. When application is in running state. When application is ...
2
votes
1answer
101 views

Present view when local notification is received

With iOS 5 and storyboarding, what is the best way to present a view when the user enters the app after having received a localnotification? I have read that using the NSNotificationCenter is the way ...
2
votes
1answer
186 views

Local Notification : repeat “permanently” with arbitrary alert message and incremental badge

I am working on the alert project which daily alerts the varying message and daily increments the badge. What I want to do is something like below. Day1 : alert "January 1st", Badge = 1 Day2 : ...
2
votes
2answers
113 views

Multiple simultaneous UILocalNotifications

If I have two (or more) UILcalNotifications that fire more or less on the same time and the application is active in the background, I found out that: Two alerts are shown simultaneously to the ...
2
votes
1answer
77 views

Send generated audio to UILocalNotification

I have an alarm app that plays .mp3 alarms and uses one .wav for local notifications. As an update I just spent laying down a massive amount of code setting up and upgrade system that convers the ...
2
votes
3answers
461 views

Are Location aware notification on iOS possible in Phonegap, Corona or Monotouch?

Like everyone else I'm venturing into mobile app-development and I'm looking at different frameworks / languages. The ones that look most appealing to me are Phonegap, Corona SDK and Monotouch. ...
2
votes
1answer
365 views

How do I play an alarm sound and present a custom view instead of just a notification?

I'm working on an alarm clock application for iOS 4.x. The other alarm clock applications that I've seen are able to present the user with something other than a local notification (i.e., a custom ...
2
votes
3answers
473 views

Home button press , Which AppDelegate method should i use for scheduling a local notification

I would like to schedule a local notification as soon as the user hits the home button. Which App delegate method should I use in this case : applicationWillResignActive ...
2
votes
1answer
549 views

how to create local notifications in iphone app

I would like to know how I ( as a developer) can setup local notifications so that at the time I set, my app generates a notification/alert with a customized message...
2
votes
4answers
368 views

How to show a UILocalNotification when ASINetworkQueue finishes all requests?

I'm using ASIHTTPRequest to download multiple files while the iPhone app is running in the background. I want to present a UILocalNotification when the queue finishes. The following delegate method ...
2
votes
1answer
582 views

Handling notification alerts that fire when the app is not running, but still show when the app is running

Let's say my app is running in the background, and I receive 2 local notifications at the same time. Alert1 for Notification1 shows, then Alert2 for Notification2 shows on top of Alert1. When I tap ...
2
votes
5answers
808 views

iOS: showing an alert when getting a call?

I would like a local notification to be fired when a call is received (and to show an alert) - is this possible? Can a call event get an app to launch or a notification to be fired? How is skype ...
2
votes
1answer
326 views

how we get close event of local notification?

i need to schedule local notification on receiving previously scheduling local notification i have schedule another notification on close event of local notification
2
votes
2answers
996 views

UILocalNotification isn't working at all

I'm having some really irritating problems with local notifications. While finishing up an app that I've nearly completed, I noticed that I couldn't get local notifications to work, no matter what I ...
2
votes
2answers
679 views

iOS Development: Push notifications prevent my local notifications from firing

I have an alarm clock app that's designed to function in a specific way when it's running in the foreground and it receives a local notification that was schedule by my app. When the user sets an ...
2
votes
2answers
498 views

UILocalNotification handling when screen is locked

I am developing an iPhone app that delivers alerts at certain times using UILocalNotifications. Pressing the OK button on the alert launches the app so it can perform specific tasks. So far, ...
2
votes
2answers
2k views

UILocalNotification custom sound

I have been searching for a solution for hours.. with absolutely zero luck. I set up a Local Notification: UILocalNotification *notif = [[cls alloc] init]; [dateComp setDay:j+1]; [dateComp ...
2
votes
1answer
365 views

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.
1
vote
1answer
14 views

Geo location notification in iOS

I want implement a geo location notification in iOS, but just in a specific date and time. The notification will only be launched if the user is in a certain location and at a certain date and time. ...
1
vote
1answer
39 views

alarm iphone sdk

I'm trying to make alarm in my app. I made UILocalNotification and it works fine. But i need to set a mp3 song as a sound of my notification and it is not working Here is some code NSString ...
1
vote
2answers
44 views

How to increment application badge number for recurring local notification (iPhone)

I've setup a local notification that repeats every minute, however I need the application badge number to increment each time. When I run it at the moment it doesn't seem to increase, it just stays a ...
1
vote
2answers
76 views

Cancel local notification not working

I've spent half of my day reading all "How to cancel a local notification" questions and answers. After all, I came up with my own solution but apparently it is not working. I have a tableview with ...
1
vote
2answers
189 views

NSLocalNotification - show notification animation when the app is running in iOS5

Is it possible to show NSLocalNotification when the app is running and in the foremost position? As the Apple document says when the app is in the foremost position the notification will not be shown ...
1
vote
2answers
59 views

Merge UILocalNotifications with same firedate

Is there any way that two (or more) UILocalNotifications which fires at the exact same time can be merged together. Let's say that I have two reminders that fires at 12.00PM today: 1) Wash the dishes ...
1
vote
4answers
107 views

Offline notifications in iOS

According to the APNS Reference at Apple.com, an iOS device cannot receive notifications while it's offline / not connection to 3G or WiFi or similar. Yesterday I found an application (Pillboxie) that ...
1
vote
2answers
188 views

Set device volume - UILocalNotification - iphone in silent mode

How can i set volume of device(in silent mode) when UILocalNotification is generated when application is in background? I am working on alarm app, so sound has to be played in silent mode too and i am ...
1
vote
1answer
384 views

iOS5 Notification drop-down menu: is there a way to know when the user presses the clear button on my apps notification on the iPhone?

Is there a delegate method or some way to get the event when a user clears my applications notifications from the Notification drop-down menu? The UIApplication delegate ...
1
vote
1answer
78 views

UILocalNotification when iPhone switched off

What happens when a UILocalNotofication is scheduled when a device is switched off. Eg. I schedule a UILocalNotification at 3pm everyday. But the device is switched off from 3:00pm to 4:00pm. I guess ...
1
vote
1answer
224 views

Local Notification only appearing in Notification Center when app is open on iPhone

I'm having a strange issue. My UILocalNotifications are only appearing in the Notification Center when the app is open. If I have the iPhone at the launch screen they don't appear. The icon badge ...

1 2 3 4 5 6