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.
我的 UILabel 是否有可能将其帧大小调整为 UILabel 文本的长度?如果是,如何?
谢谢。
使用-sizeToFit:
-sizeToFit
[label sizeToFit];
更重要的是,您还可以调整字体大小以适应宽度:
[label setAdjustsFontSizeToFitWidth:YES]; [label setMinimumFontSize:8.f];