I'm storing large unicode characters (0x10000
+) as long
types which eventually need to be converted to NSStrings
. Smaller unicode characters can be created as a unichar
, and an NSString
can be created using
[NSString stringWithCharacters:(const unichar *)characters length:(NSUInteger)length]
So, I imagine the best way to get an NSString
from the unicode long value would be to first get a unichar*
from the long
value. Any idea on how I might go about doing this?
Is there any reason you are storing the values as
long
s? For Unicode storage you only need to store the values asUInt32
, which would then make it easy to interpret the data asUTF-32
by doing something like this: