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.
我通过 Edit->Special Characters 插入一些特殊符号(复制字符信息并粘贴到标签文本):⇧
但是我有一些问题不知道如何解决:
如何缩放这些符号的大小?我只得到小符号也尝试增加字体大小,标签大小。
Xcode 的默认库对我的应用程序来说不够用。有没有更好的图书馆?
如果您知道,请介绍一些工具来制作它!
如何在代码中以编程方式显示它?
谢谢!
您永远不会更改 unicode/特殊值或文本的大小,而是需要更改 textField 或 textView 的字体大小。
您可以将其更改为:
label.font = [UIFont fontWithName:@"Arial" size:50];
供参考:在 iOS 中设置 unicode 字符宽度