简体   繁体   中英

how to remove badge notification symbol from app icon in iPhone

I am facing a problem with removing the badge number which always shows a red "1" on app icon notification symbol where there is no notification pending.

How can I solve it?

Use the below in applicationDidBecomeActive , some any methods in app life cycle..

[UIApplication sharedApplication].applicationIconBadgeNumber = 0;

When it is set to zero it should not show any badges.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM