1
vote
2answers
89 views

How don't allow iOS to start application when specific type of push notification arrives?

I want PHP server send to my iOS application two types of push notifications: New income message. For this push I want iOS start my application if it was suspended, show badge, play sound, etc. New ...
0
votes
3answers
422 views

How to update provisioning profile for Push Notification - IOS

We are working on an IOS application, we want to implement PUSH NOTIFICATION, I have gone through apple documentation, and asked my Team agent to enable the Push Notification in iOS dev center, they ...
1
vote
0answers
100 views

iOS push notification repeating # badge value

I really don't know why/where to start debugging this issue. One of my users has an issue where the badge value number of push notifications that are received are repeating. For example, if he ...
0
votes
2answers
258 views

Is didRegisterForRemoteNotificationsWithDeviceToken called always?

Is the method didRegisterForRemoteNotificationsWithDeviceToken called even if the user doesn't 'accept' receiving remote notification?
3
votes
2answers
420 views

iOS / XCode: how to know that app has been launched with a click on notification or on springboard app icon?

I would like to know if there is a way to know if an app (which can be closed or open in background) has been launched with a click on: a notification (in the notification center) ? or the app icon ...
0
votes
1answer
200 views

track user choice for Push Notification [allow/don't]

When an application need to register for push notification (UIApplication registerForRemoteNotificationTypes) a popup show Allow/Don't choice. Is there a way to track when the user take this choice ? ...
4
votes
1answer
279 views

Handle Push Notifications

I've a simple News application consisted of a UINavigationController , UITableViewController and UIViewController , When the app launches it loads the news from the web and then when click on the ...
2
votes
1answer
546 views

Push Notification on google docs doc update

I have no experience with push notifications, but I have been working with iOS for a while. How do I send a push notification to a user (i.e. a little red '1' in the app icon like mail or messages) ...
0
votes
1answer
67 views

Push notification certificate generation

We succesfully set up and tested the sandbox Push notification certificate, now we are going to test the production certificate. We generated it in the same way as the development, and changed the ...
1
vote
2answers
153 views

IOS Is there a way to send user to particular view after tapping “view” on notification?

I am using push notifications in my app and I would like to send user to particular view, not the view he last saw. Is it possible?
1
vote
2answers
348 views

IOS push Notification sound doesn't work

I am implementing the notification this way: -(void)scheduleLocalNotificationWithDate:(NSDate *)AlarmDate{ UILocalNotification *Notification = [[UILocalNotification alloc]init]; ...
1
vote
1answer
395 views

save push notification data after deleting iOS app

I faced this scenario when I was testing push notifications on iOS. when user register to receive remote notification. He add list of conditions when achieved the user should receive a notification. ...
0
votes
2answers
154 views

Hidining Badge option in Settings --> Notification for IOS 5.0

In IOS 5, how do we hide the option of Push Notification badges to set by the users in the settings application. Before IOS 5.0, the below piece of code used to do the trick & my app never used to ...
0
votes
1answer
833 views

APNS port number & host name for Push Notification

If I understand it correctly, Push Notifications are sent to port # 5223. Now, which server port we are talking about here. I am running my application on a device which is on some WiFi network. I ...
0
votes
1answer
227 views

Sandboxed APNS environment & .mobileprovision file

Anyone know the details of .mobileprovision file? I have an app which I want to point to sandbox APNS environment, I believe I need to create a .mobileprovision file for sandbox environment. Do all ...
0
votes
2answers
171 views

Push Notification on virtual LAN

Does Push Notification depends on the kind of network device is running on? I do not get Push Notification on virtual LAN. Anyone has any idea?
1
vote
1answer
974 views

How to determine Push notification status programmatically?

In my app, for first time push notification registration, I call didRegisterForRemoteNotificationsWithDeviceToken and save the device token in persistence as well as update my server list for device ...
0
votes
1answer
190 views

iOS Design Pattern for App Data Updating

I am working on an iOS app that is basically a "tip of the day" thing. There are about 3500 tips already in the database. Every day, there will be a new tip added. My idea is to store the 3500 tips ...
0
votes
2answers
946 views

Obj-C, how do I delete a local push notification set previously?

I know it's possible to delete a local push notification (How to delete a local notification in iPhone) But what if my users set a notification a week ago? How can I iterate through these ...
0
votes
1answer
448 views

iOS5 and Remote Notifications

It seems like our iOS5 devices aren't getting push notifications. Anyone have problems with this? We've been doing push tests to five devices that we have at our desk, all of which have registered ...
1
vote
2answers
698 views

Push notification badges not appearing?

I'm using Urban Airship to send push notifications to my app eg: {"aps": {"badge": 2, "alert": "Part 2 of the August Issue is ready to download!", "sound": "default"}, "device_tokens": ["X"]} The ...
1
vote
2answers
1k views

push notification : both didFailToRegister and didRegister delegate not calling

I am creating an application which support push notification I am following all the steps. It give error on simulator Failed to get token, error: Error Domain=NSCocoaErrorDomain Code=3010 "remote ...
1
vote
4answers
914 views

Primary key error when sending Push Notifications from PHP

I have developed a simple application that uses APNS. The app runs fine and receives notifications when i used my host for php but its not receiving Notifications when i send the php code with ...
3
votes
2answers
410 views

How to track friend's movement using iPhone?

There are many apps on Appstore which can show you the location of your friend at that moment if your friend and you have the same app running on iPhone. I would like to know, how can it be done? ...
0
votes
1answer
2k views

How to send Push Notification from one iPhone Device to another? [closed]

Is it possible to send Push Notification from one iPhone Device to another? If yes, then can you please show me how it can be done?
1
vote
1answer
365 views

Push notification flag in Settings

When a app has a push notification feature implemented at what point in time do we see the app name under Settings-->Notifications for enabling/disabling notifications? Is it when you install the app ...
1
vote
3answers
2k views

Push notification certificate P12 file

What does a Push Certificate P12 file contains -- Private or Public key? Any detail on this will help.
0
votes
1answer
994 views

Life of a device token received from APNS

When we register a device with APNS for push notification we receive a device token back. Is there any expiry associated with this token on APNS? Is there any timeline after which APNS will discard ...
0
votes
1answer
370 views

When to ask for push notifications? [closed]

My app is a goal-setting workshop. The user describes his life goals, and then the software sends him reminders on important dates. Apple suggests, that I should ask the user to allow me to send push ...
1
vote
1answer
952 views

Configuring the sound played when Push Notification is received

How can we configure the sound which gets played when an application is in the background and a push notification is received?
2
votes
4answers
601 views

Push Notification delegate call backs are not getting called

I am registering for Push Notification by calling the following piece of code: [[UIApplication sharedApplication] ...
2
votes
2answers
2k views

Registering for Push Notification

I have disabled Push notification from my device settings application (Inside my app icon under settings) and when I call following piece of code none of my delegate call back gets called. ...
1
vote
3answers
180 views

Which callback get executed when my app is openned from a push

Hi there i would like to know which app delegate method get called when my app launch from a push notification (When the app was previously in the background ?)
7
votes
3answers
4k 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. ...
0
votes
2answers
3k views

iPhone: How to set the application badge, when the app is closed/in background?

is it possible to set the application badge, while the app is in background mode or even closed? I haven't found anything, yet.
0
votes
3answers
1k views

Delegate for “View” for Push Notification

Is there any delegate which gets called when we tap on the "View" button of Push Notification alert. This is when App is inactive.
4
votes
4answers
4k views

Clearing the badge when received Push Notification

How can I clear the badge which appears on application icon when I receive Push Notification? I want to clear it once user has either tapped on "View" of Push notification alert or has tapped on the ...
1
vote
2answers
323 views

Alert sequence when Push Notification comes in

Please help me understanding this: When home button is pressed and iPhone application goes in the background and a Push Notification is received. There is an alert being displayed which contains the ...
3
votes
3answers
882 views

How to achieve temperature badge for weather app?

Look at this app for example. How does this work behind the scenes? I know you can set the badge by using: [UIApplication sharedApplication].applicationIconBadgeNumber = somenumber; However, ...
2
votes
1answer
581 views

Reading Notification flag in “Settings” application inside my iPhone application

I am enabling push notification for my application. How can we read the flags for notification in "Settings" app when my app is Running. For some reasons, I need to know whether a particular ...
2
votes
1answer
261 views

Sequence of methods getting called when push notification comes in

What is the first method which gets called when a push notification comes and we tap on "View" button of the alert? I wanted to understand the flow because I want to present the modal view for my ...
0
votes
1answer
407 views

Handling push notification effectively

I have a query regarding push notification. Whenever a push comes and user is working on some XYZ controller and push requires another controller to be initialized and shown. Now should I show the ...
1
vote
2answers
448 views

Apple Push Notification Service on user response

Is there a way to track user response (the choice between the 'View' and 'Close') when the message has been push into the user device? Thank you.
0
votes
4answers
1k views

Push Notification Alert Handling

I have a doubt. I am building an application wherein if there is a new request is submitted I am getting a push notification in my application and on tap of "View" button in the push notification ...
3
votes
2answers
2k views

How to send the push notification to an individual user in iPhone SDK? [closed]

I am creating an iPhone app where in I will require the push notifications. Here the query I have is that the users have sent their particular tasks. When their task is over then only that user who ...
0
votes
1answer
4k views

Pushing to a view on didReceiveRemoteNotification

When the iPhone application is running in background and it receive a remote notification. So it will execute the didReceiveRemoteNotification call back. In that I am going to push to a new ...
32
votes
2answers
10k views

Play local notification default sound when displaying UIAlertView?

I'm writing a reminders app for iPhone that displays reminders using local notifications. If a reminder goes off while the application is running, the local notification isn't displayed. Instead, the ...
0
votes
2answers
875 views

Add images via Push Notification Service?

I have a content app and would like to notify users of new content using Apple Push Notification Service, bypassing the now very long App Store submissions. Once the user receives the notification, a ...