在文本字段中显示Unicode字符
我有一个用于测试的滑块,我希望滑块位置表示的字符显示在文本字段中。 但是我的文本字段只在下面运行我的解决方案时显示AZ和az。 我怎样才能在我的文本字段中获得Unicode字符?
- (IBAction) doSlider: (id) sender
{
long long theNum = [sender intValue];
NSString *vc_theString = [NSString stringWithFormat:@"%c", theNum];
[charField setStringValue:vc_theString2];
}
%c
从C继承,限制在8位范围内。 你应该使用%C
,它将在相应的参数中作为unichar
读入。
上一篇: Show Unicode characters in text field
下一篇: What's the fastest way to find the number of spaces in an NSString?