UIPicker 特定列和行的字体大小

发布于 2024-11-26 01:45:23 字数 86 浏览 1 评论 0原文

我正在寻找更改 UIPicker 中特定列和行的字体大小。基本上,视图中的文本太多,我想调整第二列中特定行的大小,以便它适合?

感谢您的帮助。

I'm looking to change the font size of a certain column and row in a UIPicker. Basically there's too much text that runs off the view and I'd like to size just that particular row in the 2nd column down so it fits?

thanks for any help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我家小可爱 2024-12-03 01:45:23

如果要自定义标签字体大小,请实现名为的委托方法:

-(UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view;< /code>

返回配置良好的 UILabel (您可以更改 font 属性或设置将FontSizeToFitWidth属性调整为YES)。

If you want to customize label font size, implement delegate method called :

-(UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view;

to return a well configured UILabel (you can change font property or set adjustsFontSizeToFitWidth property to YES).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文