I am developing an app with push notifications. To check all possible ways of user interaction, I'd like to test my app when a user declines to have push notifications enabled for my app during the first start.

The dialog (initiated by registerForRemoteNotificationTypes), however, appears only once per app. How do I reset the iPhone OS's memory of my app. Deleting the app and reinstalling doesn't help.

link|improve this question

feedback

4 Answers

up vote 46 down vote accepted

Technical Note TN2265: Troubleshooting Push Notifications

The first time a push-enabled app registers for push notifications, iOS asks the user if they wish to receive notifications for that app. Once the user has responded to this alert it is not presented again unless the device is restored or the app has been uninstalled for at least a day.

If you want to simulate a first-time run of your app, you can leave the app uninstalled for a day. You can achieve the latter without actually waiting a day by setting the system clock forward a day or more, turning the device off completely, then turning the device back on.

link|improve this answer
3  
Has anyone tried this w/ iOS 5.1? I have followed these steps exactly and I still can't get the device to reset it... I have even tried setting the clock on my Mac forward before installing it via Xcode. – nick Mar 21 at 19:21
Ditto... I didn't get a prompt. – Robaczek Mar 27 at 5:29
Same here. This doesn't seem to work with iOS 5.1. – Matej Bukovinski Apr 10 at 19:08
Apple added a new requirement to the AppStore submissions guidelines, which relies on the application to show the prompt. This may suggest that the automatic prompt has been removed in iOS 5.1. However there is no API to query the notification center settings, so not sure what would be the purpose of the prompt anyway. See my response to a similar issue: stackoverflow.com/questions/10191006/… – Amiramix Apr 18 at 12:10
feedback

I have wondered about this in the past and came to the conclusion that it was not actually a valid test case for my code. I don't think your application code can actually tell the difference between somebody declining notifications the first time or later disabling it from the iPhone notification settings. It is true that the user experience is different but that is hidden inside the call to registerForRemoteNotificationTypes.

Calling unregisterForRemoteNotifications does not completely remove the application from the notifications settings - though it does remove the contents of the settings for that application. So this still will not cause the dialog to be presented a second time to the user the next time the app runs (at least not on v3.1.3 that I am currently testing with). But as I say above you probably should not be worrying about that.

link|improve this answer
I was hoping for a better answer, but I guess there just isn't one. Thanks anyway! – hanno Mar 14 '10 at 21:26
feedback

The plist: /private/var/mobile/Library/RemoteNotification/Clients.plist

... contains the registered clients for push notifications. Removing your app's entry will cause the prompt to re-appear

link|improve this answer
Interesting. But this is for jailbroken systems only, right? – hanno Apr 13 '10 at 10:55
1  
useless answer if you develop for the App Store – samvermette Jul 20 '10 at 20:42
feedback

The Apple Tech Note also described you can restore the device to reset the Push Notification dialog.

It does not say that you can also use the option "General -> Reset -> Erase All Content And Settings" on the device itself (iOS 5.x).

link|improve this answer
For what it's worth: I just tried 'erase all settings', and that didn't work. Trying all-content-and-all-settings... – Groxx yesterday
And "all content and settings" does indeed work, thanks! But holy nuclear option, Batman! That's absolutely insane. – Groxx yesterday
feedback

protected by Brad Larson Feb 24 '11 at 23:04

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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