Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to give an app icon a notification badge without a number?

On page 7 of Apple's Local and Push Notification Programming Guide there is a screenshot of the iPhone desktop, one of the application icons has a badge which does not contain a number - it is just plain red.

How is it possible to achieve this?

like image 406
Gruntcakes Avatar asked May 31 '12 21:05

Gruntcakes


1 Answers

I think what you want to do is not possible with the current notification API. If you want to display the badge on your application icon, you must use the "badge" key in your APNS payload, and the value for this key must be an integer.

Even the local notification API has the same limitation, you can change the badge value with the applicationIconBadgeNumber property but, unfortunately, this property only accepts an integer.

It seems that only built-in apps (such as the phone app) can display a badge without number.

like image 93
Greg K Avatar answered Sep 30 '22 11:09

Greg K