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.
我使用 Interface Builder - Storyboard -设计了一个包含UILabel的UIViewController
我注意到在 UILabel 顶部有很多空间 - 填充,如何减少这个空间 - 填充 - 使用情节提要,甚至代码。
您可以调用sizeToFit标签根据文本所需的大小进行放置
sizeToFit
任何其他“填充”都来自字体。
标签本身不应用任何其他填充
你正在寻找这个:
[UILabel sizeToFit];