私はNSStringオブジェクトを持っていてunicharに変更したいと思います。NSStringをunicharに変換することが可能です
int decimal = [[temp substringFromIndex:2] intValue]; // decimal = 12298
NSString *hex = [NSString stringWithFormat:@"0x%x", decimal]; // hex = 0x300a
NSString *chineseChar = [NSString stringWithFormat:@"%C", hex];
// This statement log a different Chinese char every time I run this code
NSLog(@"%@",chineseChar);
ログを見ると、コードを実行するたびに異なる文字が表示されます。 m何かが見当たりません...?
感謝を。 –