How the application icon should appear today

I am developing a calendar application. The application icon should be updated every day depending on the date of the day. for example, if today is August 27, then the application icon should show 27, and tomorrow - 28.

Could you please help me on whether this is possible on iphone or not. thank!

+3
source share
2 answers

This is not possible on the iPhone (at the moment). An application can only have a permanent icon. However, you can show the icon with a number (27, 28), which is not so nice, of course.

+3
source

As far as I know, this is not possible, you cannot change the Icon.png image that is used for the application icon.

, - , :

[UIApplication sharedApplication].applicationIconBadgeNumber = 27
0

All Articles