IOS8 Setting the app icon red dot permission issue

Source: Internet
Author: User

In iOS8, setting application badge value directly is an error

1 [[UIApplication sharedapplication] setapplicationiconbadgenumber:count];

Exposure to " Attempting to badge the application icon but haven‘t received permission from the user to badge the application " errors.

The reason is because in iOS8, setting the app's application badge value needs to be licensed by the user. Use the following method to inquire whether the user is permitted to apply Settings application badge value

Uiusernotificationsettings *settings = [Uiusernotificationsettings Settingsfortypes:uiusernotificationtypebadge Categories:nil]; [[UIApplication sharedapplication] registerusernotificationsettings:settings];

When the program runs, it will pop up a prompt box to the user

The callback for notification authorization has been added in IOS8:
– (void) Application: (UIApplication *) application didregisterusernotificationsettings: (Uiusernotificationsettings * ) notificationsettings
Problem Solving :
Put all
– (BOOL) Application: (UIApplication *) application didfinishlaunchingwithoptions: (Nsdictionary *) launchoptions in the-[ UIApplication Setapplicationiconbadgenumber:]
Move to
– (void) Application: (UIApplication *) application didregisterusernotificationsettings: (Uiusernotificationsettings * ) notificationsettings
Callback in

IOS8 Setting the app icon red dot permission issue

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.