0
我有一個用於測試的滑塊,我希望滑塊位置表示的字符顯示在文本字段中。但是我的文本字段只在下面運行我的解決方案時顯示A-Z和a-z。我怎樣才能在我的文本字段中獲得Unicode字符?在文本字段中顯示Unicode字符
- (IBAction) doSlider: (id) sender
{
long long theNum = [sender intValue];
NSString *vc_theString = [NSString stringWithFormat:@"%c", theNum];
[charField setStringValue:vc_theString2];
}