gpt4 book ai didi

iphone - 如何更改 UIPickerView 中每个组件的宽度?

转载 作者:行者123 更新时间:2023-12-03 18:40:35 24 4
gpt4 key购买 nike

如何更改 UIPickerView 中每个组件的宽度?

最佳答案

在选择器的委托(delegate)中实现 pickerView:widthForComponent: 方法,并从中返回每个组件的适当宽度。例如

- (CGFloat)pickerView:(UIPickerView *)pickerView widthForComponent:(NSInteger)component{
switch (component){
case 0:
return 100.0f;
case 1:
return 60.0f;
}
return 0;
}

关于iphone - 如何更改 UIPickerView 中每个组件的宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4338164/

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