vote up 0 vote down star

I have 2 problem

  1. I implement notification , install in my phone but when I send notification from provider, I didn't receive any notification , but when i use another phone i receive notification. Is there any setting for receiving notification?
  2. where of my code i must implement codes that must run when i click on"View button" on notification alert!??
flag

1 Answer

vote up 0 vote down

1) Once there is an app installed that accepts notifications there will be a "Notifications" item in the iPhone Preferences just under "Wi-Fi".

2) There is nothing specific other than the standard APS registration on startup. On an application basis the app may want to connect to the server to provide feedback that the notification was received and the app was run.

The app should be using:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

Not

- (void)applicationDidFinishLaunching:(UIApplication *)application
link|flag
if we use this method - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions will our application shows the views – Rahul Vyas Oct 12 at 10:14
What does "application shows the views" mean? – zaph Oct 12 at 12:36

Your Answer

Get an OpenID
or

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