gpt4 book ai didi

ios - 在选择器 View 中更改字体大小和样式

转载 作者:可可西里 更新时间:2023-11-01 00:20:59 25 4
gpt4 key购买 nike

如何更改选择器 View 的字体样式和大小?我在选择器 View 设置中看不到选项。你能以编程方式设置它吗?我正在使用 swift 3 并且xcode 8.2.

最佳答案

您可以在函数中更改字体样式和大小:

func pickerView(_ pickerView: UIPickerView, viewForRow row: Int, forComponent component: Int, reusing view: UIView?) -> UIView

例如:

let pickerDataSource: [String] = (1...10).map { "Option " + String(format: "%2d", $0)}

func pickerView(_ pickerView: UIPickerView, viewForRow row: Int, forComponent component: Int, reusing view: UIView?) -> UIView {
let label = (view as? UILabel) ?? UILabel()

label.textColor = .red
label.textAlignment = .center
label.font = UIFont.systemFont(ofSize: 20)

label.text = pickerDataSource[row]

return label
}
}

关于ios - 在选择器 View 中更改字体大小和样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45180101/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com