gpt4 book ai didi

objective-c - 在文本字段中显示 Unicode 字符

转载 作者:行者123 更新时间:2023-12-03 17:42:16 24 4
gpt4 key购买 nike

我有一个用于测试的 slider ,我希望 slider 位置表示的字符显示在文本字段中。但在运行下面的解决方案时,我的文本字段仅显示 A-Z 和 a-z。如何将 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 的形式读入相应的参数。

关于objective-c - 在文本字段中显示 Unicode 字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9659748/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com