如何在 UILabel 中设置特殊字符(向右箭头)?
How can I set a special character(right arrow) in UILabel?
我正在尝试在 UILabel 中设置文本,就像这样
mylabel.text = @"▶ section1";
但是,右箭头字符被转换为 UILabel 中的音频播放器图标。
有没有办法原封不动地打印右箭头字符。
谢谢。
尝试使用 unicode:
mylabel.text = @"\u25BA section 1";
我正在尝试在 UILabel 中设置文本,就像这样
mylabel.text = @"▶ section1";
但是,右箭头字符被转换为 UILabel 中的音频播放器图标。
有没有办法原封不动地打印右箭头字符。
谢谢。
尝试使用 unicode:
mylabel.text = @"\u25BA section 1";