6

I'd like to use "BLACK RIGHT-POINTING TRIANGLE" (U+25B6) as a part of my UILabel's text. The label uses the system font (UIFont's systemFontOfSize:). The problem is that my triangle is rendered as a fancy image, not a "black right-pointing triangle". Is it possible to see the plain version?

Rudolf Adamkovič
  • 31,030
  • 13
  • 103
  • 118
  • 2
    This seems to be a (controversial) "feature": some characters are displayed as "Emojis". Searching for "disable emoji in UILabel" gives some hits. See also https://devforums.apple.com/message/487463#487463 (requires Apple Developer login). – Martin R Dec 11 '12 at 18:40

2 Answers2

16

Based on:

Unicode characters being drawn differently in iOS5

iOS 6 supports Unicode 6.1's variation selector, in this case \U0000FE0E. To answer my own question:

@"\U000025B6" // a fancy triangle (mapped to Emoji)
@"\U000025B6\U0000FE0E" // black right-pointing triangle

For more information check: http://www.unicode.org/versions/Unicode6.1.0/

Thanks @martin-r and @ACB, I wouldn't be able to figure this out without your hints!

Community
  • 1
  • 1
Rudolf Adamkovič
  • 31,030
  • 13
  • 103
  • 118
2

In case someone doesn't have access to that devforums, the below mentioned line is the reply from Apple.

"With the set of fonts we ship in iOS, Hiragino Kaku Gothic ProN has the glyph you're looking for."

Try to use that particular font. That is the only way available now.

iDev
  • 23,310
  • 7
  • 60
  • 85