XCode - Display Vietnamese : Unicode problem
I need to display Vietnamese in my APP. But now, i cannot show the words in correct format. For example, the word "&#code" i cannot convert it to Vietnamese,开发者_运维知识库 it just display "&#code;".
Does anyone can help me how to handle the word in unicode ?
Thanks a lot!
Tisa
Just write the unicode string inside @"..."
without quoting. Strictly speaking, that's non-portable, but as long as you use it for just for Objective-C, it should be OK. It should work on a modern XCode toolchain.
In general, you need to understand that &#...
is a way to quote unicode character in HTML, not in a C-string. In C, if you want to be most portable, you need to use \x
escapes. Some newer compilers accept \u...
and \U...
for unicodes.
精彩评论