Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dynamic iPhone App icons?

The calender app does it... How can I make an app icon change based on stored info from the iPod or iPod app settings?

EDIT: I realized today that it is possible to access bundles via the sdk. (At least read access) If I had a graphics API (OpenGL, perhaps) then I could possibly modify the icon like that. The operation would be:

  • get icon.png from bundle.
  • modify it
  • resave it into the bundle.

Does that make sense?

like image 326
Moshe Avatar asked Dec 22 '22 05:12

Moshe


2 Answers

Just as a note, Apple's Calendar app is actually hardcoded into the system to display a view over the icon. Put it on the left of the first page and drag to SpotLight, you will notice that the text fades out differently.

like image 138
Grant Paul Avatar answered Jan 04 '23 22:01

Grant Paul


Unfortunately you can't use the SDK (which of course Apple isn't restricted to with the Calendar app) – you can do badges but the image is always static.

like image 37
Jon Avatar answered Jan 04 '23 21:01

Jon