gpt4 book ai didi

iphone - 如何更改 UIPickerView 中的字体大小?

转载 作者:行者123 更新时间:2023-12-03 19:28:15 27 4
gpt4 key购买 nike

Possible Duplicate:
UIPickerView Font…

我在我的应用程序中确实遇到了这个问题。我到处寻找都无果。如何更改 UIPickerView 中的字体大小?

最佳答案

在选择器的数据委托(delegate)中实现 viewForRow:forComponent: 方法,使用您需要的字体(和所有其他属性)在其中创建 UILabel 实例,例如:

- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view{
UILabel* tView = (UILabel*)view;
if (!tView){
tView = [[UILabel alloc] init];
// Setup label properties - frame, font, colors etc
...
}
// Fill the label text here
...
return tView;
}

关于iphone - 如何更改 UIPickerView 中的字体大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6094998/

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