更新时间:2025-03-23 20:52:29
在Swift开发中,设置UILabel的文字字体和大小是UI设计的基础操作之一。通过`label.font`属性,我们可以轻松实现这一需求。例如,使用`UIFont`类来指定字体名称与大小,代码如下:
```swift
label.font = UIFont(name: "Arial", size: 16)
```
如果需要更复杂的字体样式,可以结合`UIFontDescriptor`进行自定义。比如调整字体粗细或添加斜体效果:
```swift
if let customFont = UIFont(name: "Arial-Bold", size: 18) {
label.font = customFont
}
```
此外,动态适配屏幕尺寸时,建议使用`traitCollection`监听设备的变化,确保字体大小始终符合用户体验的需求。例如:
```swift
override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
super.traitCollectionDidChange(previousTraitCollection)
label.font = UIFont.preferredFont(forTextStyle: .body)
}
```
通过这些方法,开发者能够灵活掌控Label文字的外观,打造美观且实用的界面!✨