是否可以减少或更改 UIPickerView 项目的字体?
是否可以减少或更改 UIPickerView 项目的字体?
Is it possible to reduce or change the font of the items of the UIPickerView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在选择器委托中实现
pickerView:viewForRow:forComponent:reusingView:
方法,而不是pickerView:titleForRow:forComponent:
。您将能够在那里创建 UILabel 对象并为其设置所有必要的属性。Implement
pickerView:viewForRow:forComponent:reusingView:
method in picker's delegate instead ofpickerView:titleForRow:forComponent:
. You'll be able to create UILabel object there and setup all necessary properties for it.