Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 SBJsonParser 来解析一个 json 字符串。在里面,而不是希伯来字符,我得到了一个充满字符的字符串,形式像 \U05de 将这些解码回希伯来字符的最佳方法是什么,所以我可以将它们放在 UIFieldView 之类的控件上?
最终,我在字符串中为循环中的字符 \u 运行了一个循环迭代,当检测到这样的子字符串时,我从该索引开始取了 6 个字符的范围,给了我一个子字符串,例如需要修复的 \u052v。在这个字符串上,我运行了方法[str JSONValue],它给了我正确的字符,然后我简单地将所有出现的 \u052v (例如)替换为后一个更正的字符。
[str JSONValue]