在iOS UILabel,UITextView,UIAlertView等控件中都可以使用
使用方法如下
NSString *s = [NSString stringWithFormat:@"This is a smiley \ue415 %C face",0xE05A]; NSLog(@"11----%@",s); label.text=s;
以下是对应的表情编码,但是新版sdk中编码有所改变,具体请参考苹果官方文档对照着看http://opensource.apple.com/source/ICU/ICU-461.13/icuSources/data/translit/Any_SoftbankSMS.txt
比如第一个笑脸表情\ue415 就需要用这个\U0001F604
时间: 2024-10-05 14:16:24