1

I want to create my C++ libraries with Unicode support so they can be reused on other platforms.

I have found the ICU (International Components for Unicode) project but I also found a discuss about Apple rejecting for using ICU.

So how do you guys use Unicode in C++ on iPhone? Thanks.

Community
  • 1
  • 1
Olli Wang
  • 121
  • 5

2 Answers2

2

What do you want to use, in Unicode? If you want to manipulate Unicode strings and format or parse things according to a locale, the standard APIs should be enough: std::wstring, std::locale, iconv(), etc…

jcayzac
  • 1,441
  • 1
  • 13
  • 26
1

The iPhone uses ICU internally. Check About»Legal.

Steven R. Loomis
  • 4,228
  • 28
  • 39