I am building a keyboard extension for iOS 8 and wondering whether the globe icon is a character of some font or an image?
Asked
Active
Viewed 2,625 times
5
-
2http://www.fileformat.info/info/unicode/char/1f310/index.htm (by the way I found this by doing a google search for "globe unicode symbol" and clicking on the first result so party foul on you!) – borrrden Nov 13 '14 at 01:56
-
@borrrden Thank you. If you copy and paste the 1F310 unicode character into Xcode Interface Builder, the font is in a blue color (not following Text Color attribute), which is different from the black color shown in above system keyboard. – ohho Nov 13 '14 at 03:37
-
That I can't help you with. Does it also show blue at runtime? Did you try changing the font? – borrrden Nov 13 '14 at 03:57
-
1Same problem here. Colour is blueish, independent for text colour setting. @ohho: did you find a solution? – Wizard of Kneup Apr 19 '15 at 10:55
-
2Now the easiest way is to click on **Edit > Emoji** – Moxet Khan Jul 01 '15 at 20:15
-
@borrrden Do you mind posting this as an answer to be accepted? – herzi Jul 13 '18 at 09:04
-
iOS buttons use the tint color by default. All you have to do is set black as the tint color of your button and you're happy with the color. – herzi Jul 13 '18 at 09:05
-
Is it still the answer that OP wants? – borrrden Jul 14 '18 at 11:06
-
@borrrden yes please. – ohho Jul 25 '18 at 04:36
1 Answers
0
This is the character being used: http://fileformat.info/info/unicode/char/1f310/index.htm (Unicode charpoint 1f310)

borrrden
- 33,256
- 8
- 74
- 109
-
Thank you for this. Is there any way to get the character to render as plain text instead of its emoji equivalent? In both macOS and iOS it renders as an emoji and I can't get it to display in plain black as on the normal keyboard. – mashers Sep 22 '18 at 13:31
-
Emoji is basically "plain text" of the font that is being used. You would need to use a font that has it rendered how you want. I don't believe that an actual graphic is used, the vector emoji is literally what is in the font for that character. – borrrden Sep 24 '18 at 07:52
-
Thanks borrrden. In the end I installed a different font and the emoji character (which is rendered as emoji in the source in Xcode) is rendered as plain text in that font. See here: https://stackoverflow.com/questions/24522898/how-to-obtain-plain-globe-unicode-character – mashers Sep 24 '18 at 08:43