我有一个Json返回值,该返回值的字符串有时包含数组中的\ Uf604之类的东西(即memo memo =“ \ Uf604”;)。如果可能,我需要将其转换为\ U0001F604。
我尝试做类似stringByReplacingOccurrencesOfString的操作,但那时它在字符串中并且已转换为ÔòÑ,我认为它必须是üòÑ才能显示为图释。我也试过
[str stringByReplacingOccurrencesOfString:@“Ô” withString:@“ü”];
但这并没有改变任何东西。它仍然以ÔòÑ返回。
任何帮助,将不胜感激!
最佳答案
我相信str = [str stringByReplacingOccurrencesOfString:@"Ô" withString:@"ü"];
是您想要做的。stringByReplacingOccurrencesOfString:withString:
不会更改您正在调用的字符串,而是返回带有替换字符的新字符串。
关于iphone - iPhone应用程序:表情符号Unicode,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11354279/