When I register my app for push notification I get an alert on launch asking permission for registering my app for push notification. My questions are (for iOS5 & iOS 6 if u know):
- What control I have over that alert?
- Can I control that alert, not show it, and make user to allow/not allow push-notifications later in the app using a checkbox/button.
You can not control push notification alertView.
What you can do is to check the allowed push types:
[[UIApplication sharedApplication] enabledRemoteNotificationTypes]in to the app and inform the user to go to settings and enable push notification for your app.