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.
我有一个 unicode 字符₮,它在标签和 UITextView 中显示得很好,但是当我将它显示为 UITableView 单元格的文本时,它显示为问号。
我在这里遗漏了什么,或者不同的 iOS 控件支持不同的字符集?在后端,字符来自 NSString 并且标签仅显示所选 UITableView 单元格的文本:
self.MyLabel.text = cell.textLabel.text;
请参阅下面的屏幕截图以供参考。
原来是字体问题。与其他 UI 控件相比,我为表格单元格使用了不同的字体。
rmaddy 上面的评论帮助我解决了这个问题。