gpt4 book ai didi

ios - 从 webservice 获取 unicode 字符并在 ios 应用程序中显示它们

转载 作者:行者123 更新时间:2023-11-29 00:56:48 26 4
gpt4 key购买 nike

我需要一些帮助:

我仅从 WebService 获取 uunicode 值的一部分,然后附加前缀\u 来完成该值。 .ttf 很好,我用一些硬编码值进行了测试。

 NSString *cuvant = [[self.catData objectAtIndex:indexPath.row]objectAtIndex:9]; //Get data 
//apend prefix (double \ to escape the \u command)
cuvant = [NSString stringWithFormat:@"\\u%@",cuvant];


// cell.catChar.text = [NSString stringWithUTF8String:"\ue674"]; --->this works very well
cell.catChar.text = [NSString stringWithUTF8String:[cuvant UTF8String]]; //---> this doesn't work

我搜索了文档和其他网站,但我没有发现任何有用的东西,所有提示都带有硬编码数据......我需要动态地获取代码

谢谢!

最佳答案

您所需要的只是首先将这个统一编码的字符串作为数据提供。所以然后制作一个 C-String

NSData *dataFromUnicodedString = [NSData dataWithBytes:yourCUnicodedString length:strlen(yourCUnicodedString)];

然后生成的字符串将是

NSString *unicodedString = [[NSString alloc] initWithData:dataFromUnicodedString encoding:NSUTF8StringEncoding];

关于ios - 从 webservice 获取 unicode 字符并在 ios 应用程序中显示它们,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37549776/

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