Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to customize application icon badge: Xcode?

This may be a foolish question. But I'm asking it because of my curiosity. Is there is any possible way to customize an iOS application icon badge image(as below:)..?

enter image description here

Thanks in advance...

like image 551
Krishna Raj Salim Avatar asked Mar 21 '13 08:03

Krishna Raj Salim


2 Answers

Not possible at all. You have to use Default. After the app launch you can show custom badge icon of the UITabbar.

All the best !!!

like image 61
Yashesh Avatar answered Nov 06 '22 04:11

Yashesh


If you mean the badge number that can be shown on an app icon, in white text over a red circle, then no, it cannot be set to a custom image. You can only control the number that is shown. It is set using the -[UIApplication setApplicationIconBadgeNumber:] method, i.e., the applicationIconBadgeNumber property on UIApplication:

[[UIApplication sharedApplication] setApplicationIconBadgeNumber:99];
like image 23
Stuart M Avatar answered Nov 06 '22 05:11

Stuart M