gpt4 book ai didi

ios - 带有 unicode 的字符串和带有多行的 UILabel

转载 作者:行者123 更新时间:2023-11-29 03:13:47 26 4
gpt4 key购买 nike

我正在使用 XMLDictionary 将数据从 xml 保存到 NSDictionary 然后我打印 NSDictionary 我看到了unicode 中的一些代码:

"text" = "Test \U2013 test\\nTest \U2013 test";

因此,当我将 UILabel 与多行一起使用时,它会打印 test - test\nTest - test

但我期望:

            test - test
Test - test

我怎样才能做到这一点?

最佳答案

读入xml字符会很有趣。 XML 不知道\表示“接下来是特殊字符”。它知道“\”的意思是“我要你写一个”。

因此,要获得您要查找的内容,您必须从字典中读取字符串,然后执行 [string stringByReplacingOccurrencesOfString:@"\\n"withString:@"\n"]; 在上面获取回车符。

可以在xml中保存回车,但不能使用“\”方式。

关于ios - 带有 unicode 的字符串和带有多行的 UILabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21917435/

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