Questions tagged [localnotification]

A Cordova/PhoneGap plugin to create local notifications on iOS devices using hybrid apps

A Cordova/PhoneGap 3.0.0+ plugin to create local notifications on iOS, originally by Olivier Lesnicki. This may be used to schedule notifications or other functions that trigger at some point in the future.

More info at https://github.com/hiattp/Phonegap-LocalNotification

626 questions
-1
votes
1 answer

Schedule notification based on incremental random time interval

How to schedule the notification based on the incremental time span 10 min, 10 hours, 20 hours, 1 day, 5 days, 1 week, 1 month, 5 month, 1 year, 5 years, 10 years. Notification Message: for 10 min You have completed Successfully 10 min for 10…
kiran
  • 4,285
  • 7
  • 53
  • 98
-1
votes
1 answer

iOS slow local notifications scheduling

I have a problem with local notifications scheduling (I'm using all available slots - 64). Main problem that it took a lot of time, on slow devices (iPhone 5C) up to 20 seconds ! Here how I'm doing this: let notificationCenter =…
Never_be
  • 839
  • 2
  • 10
  • 20
-1
votes
1 answer

iOS recurring Alarm - Push notification

In my app, i need to set alarm when the user receives a push notification.And it should stop when the user reads the notification. How to achieve it?
Anju
  • 563
  • 2
  • 6
  • 13
-1
votes
1 answer

Local Notifications for before ending date in iOS

I am creating one app in this I am giving start date and end date. I want to give local notifications for end date before one day. can you please help me for this.
Aditya
  • 15
  • 8
-1
votes
2 answers

Stop a notification using swift 3

I have a problem which involves stopping a local notification. This stop button is that so if the user starts a timer (a notification pops up once the timer runs out) and then decides they no longer need the timer, they can cancel it. The problem…
imjonu
  • 515
  • 1
  • 6
  • 12
-1
votes
2 answers

Will local notification in iOS work even if the app is terminated?

I'm building a reminder-like application that will remind people to take their medication on a scheduled time by firing up a notification to ask the user to open the app for more details about the medication they should take. I'm planning to use…
michelle9090
  • 267
  • 1
  • 4
  • 14
-1
votes
1 answer

How to notify UILocalNotification for every two week

Good Morning, How to notify localNotification for every two weeks (14days) a notification. - (void)applicationDidEnterBackground:(UIApplication *)application { timer = [NSTimer scheduledTimerWithTimeInterval:60*60*24*14 target:self…
KkMIW
  • 1,092
  • 1
  • 17
  • 27
-1
votes
1 answer

How to notify a notification message at every month end day

How to notify every month notification. -(void)applicationDidEnterBackground:(UIApplication *)application { NSDateFormatter *format = [[NSDateFormatter alloc] init]; format.dateFormat = @"dd-MM-yyyy"; NSComparisonResult…
KkMIW
  • 1,092
  • 1
  • 17
  • 27
-1
votes
1 answer

How to add local notification plugin in windows phone silver light Environment using worklight 7.1

We are developing hybrid mobile application using IBM Worklight 7.1. In this application we want to add local notification plugin, In android environment we successfully added, Now we are trying to add local notification plugin in windows phone…
-1
votes
1 answer

Local Notification repeats indefinitely- Swift

I scheduled a local notification that should be activated after several hours without the user using the app. The problem I am having is that once it fires, the notification is repeated constantly until the app goes on the foreground. I would like…
Jacobo Koenig
  • 11,728
  • 9
  • 40
  • 75
-1
votes
1 answer

how to cancel a localNotification taken from an array of strings after being converted to NSDate?

Let’s say this StringArray has strings of Dates which are already scheduled in localNotification, is there a way to get those strings, convert them to dates and then remove a certain scheduled date var arr = ["2016-08-27 19:29:50 +0000","2016-09-20…
-1
votes
1 answer

Ios repeating local notifications

Here are my problems : Schedule local notifications between two dates every specific day of the week . example : between march 1 and march 20 every sunday I have more than 64 local notifications to set which is the limit . For the first problem i…
Aerox
  • 353
  • 3
  • 13
-1
votes
1 answer

how to set alarmmanager for local notification?

Here is my code for set alarm and getting notification :- Calendar calendar = Calendar.getInstance(); calendar.set(Calendar.MONTH, Integer.parseInt("2")); calendar.set(Calendar.YEAR, Integer.parseInt("2016")); calendar.set(Calendar.DAY_OF_MONTH,…
-1
votes
1 answer

No sound on notification with soundName in iOS

i'm looking for work sound on notification with soundName in Objective-C on test project, but this doesn't work. I used the code from how to create local notifications in iphone app answer, but sound don't work, i don't understant why :(. In my…
Nono66300
  • 11
  • 4
-1
votes
1 answer

How to change the message content

Alert Message for pushnotification How can i change the message content for my app. Plist changes
Vignesh
  • 35
  • 1
  • 8
1 2 3
41
42