ios将带有特殊字符的NSString转换为const char

时间:2012-03-28 15:25:41

标签: ios nsstring char nsstringencoding

我试图用CGContextShowTextAtPoint绘制一个字符串。 CGContextShowTextAtPoint仅接受“const char”作为字符串输入。 我的问题是,有些字符串中有特殊的字符,如ä,ö,ü等。

如果我将此字符串转换为“const char”

NSString *label = @"Küche";
const char *charLabel = [label UTF8String];

我得到一个奇怪的输出,其中ü被标志和方框替换......

该怎么办?

1 个答案:

答案 0 :(得分:1)

您只能使用CGContextShowTextAtPoint绘制ASCII字符。 要绘制Unicode字符串,请使用drawInRect:withFont:之类的NSString UIKit Additions或({更多自定义绘图)CoreText framework