如何更改 UIPickerView 中的字体大小?
可能的重复:
UIPickerView 字体...
我真的陷入了应用程序中的这一问题。我到处寻找都无果。如何更改 UIPickerView 中的字体大小?
Possible Duplicate:
UIPickerView Font…
I'm really stuck on this one problem in my application. I searched everywhere to no avail. How can I change the font size in a UIPickerView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在选择器的数据委托中实现 viewForRow:forComponent: 方法,使用您需要的字体(和所有其他属性)在其中创建 UILabel 实例,例如:
Implement
viewForRow:forComponent:
method in picker's data delegate, create UILabel instance in it with the font (and all other properties) you need, e.g.:PickerView.transform = CGAffineTransformMakeScale(0.4, 0.4);
PickerView.transform = CGAffineTransformMakeScale(0.4, 0.4);