本文介绍了苹果推送通知和字符表情符号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
最近,我发现APNS和表情符这个非常有趣的文章:
它包含所有支持表情符号列表。但是,我不能让他们在我的推送通知显示。我得到的是code,而不是图像。例如,如果我添加\\ ue415(笑脸)给我留言,我从来没有看到图像,只是code。
任何想法,我做错了吗?
先谢谢了。
解决方案
的NSString表情符= [的NSString stringWithFormat:@%C,0xe415]
I recently found this very interesting article on APNS and Emoji characters: EASY APNS - Just for fun
It contains a list with all supported Emojis. However, I couldn't get them to display in my push notifications. All I get is the code, not the image. For example, if I add \ue415 (a smiley) to my message, I never see the image, just the code.
Any idea what I'm doing wrong?
Thanks in advance.
解决方案
NSString *emoji = [NSString stringWithFormat:@"%C", 0xe415];
这篇关于苹果推送通知和字符表情符号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!