9

How can I add an additional icon to the Name/Lable of app, just the like snapshot of my test device Home screen (see highlighted Water app, in the attached screenshot). You can see that there is a small icon at the end of App Name/Label.

http://img15.imageshack.us/img15/9836/screenshot2012032718452.png

PS: I'm not sure, if its part of the Application icon, or there is some way to add an additional icon to App Name/Label.

Thanks!

Zee
  • 1,865
  • 21
  • 42
  • 1
    Looks like Emoji to me. Didn't realize you can add it to the bundle display name... time to test this! – Mike Weller Mar 27 '12 at 14:09
  • I can not find this app in the app store. There is a water app, but it does not have that character. – nycynik Mar 27 '12 at 14:19
  • 1
    @nycynik: Hmmm... Might be some issue of app store location, in my store it is avilable with icon. and I also have test it and it works :) – Zee Mar 27 '12 at 14:42

1 Answers1

15

This is an Emoji character. See Emoji on Wikipedia and iOS: Understanding emoji for more information about these. They are special unicode characters that are very popular in countries like Japan. iOS has support for these throughout the OS, and you can see these characters on the Wikipedia page by visiting it with Safari.

You can put these characters into the "Bundle display name" (CFBundleDisplayName) of your Info.plist (or InfoPlist.strings) and they will appear correctly on the home screen of the device:

enter image description here

enter image description here

I'm not sure if this is officially allowed by Apple.

Mike Weller
  • 45,401
  • 15
  • 131
  • 151
  • 1
    This is the link to the app which I download from app store, after install Lable/Name changes to [Water]. So I think apple officially allows this. http://itunes.apple.com/us/app/water-your-body/id337998484?mt=8 – Zee Mar 27 '12 at 15:05
  • 3
    To enter Emoji characters on OS X Mavericks simply hold Command-Control-Space whenever you are in a text field and an Emoji panel will appear. – jengelsma Oct 16 '14 at 16:45
  • 1
    I decided to try this in my app. I will return and say, whether the app passed Apple's validation – Tim Jul 08 '15 at 18:50
  • 3
    Yes, my app did pass the validation process. – Tim Jul 21 '15 at 11:30