gpt4 book ai didi

ios - UiPickerView 在其行滚动之前无法工作 ios

转载 作者:行者123 更新时间:2023-11-28 21:40:25 24 4
gpt4 key购买 nike

我有一个 UIPickerView 。它工作正常。但在滚动行之前它不会选择任何行。

这是我的代码。

 selectProArray = [[NSMutableArray alloc]initWithObjects:@"ABC",
@"DEF",
@"IJK",
nil];

selectPROPicker = [[UIPickerView alloc]init];
selectPROPicker.backgroundColor = [UIColor colorWithRed:209.0/255.0
green:213.0/255.0
blue:219.0/255.0
alpha:1];

-(void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
{
selectedPickerRow=[selectProArray objectAtIndex:row];
NSLog(@"SelectedRow=%@",selectedPickerRow);
rowID = row;
[selectField resignFirstResponder];
}

最佳答案

在pickerView中选择一行

picker= [[UIPickerView alloc]init];
[picker selectRow:0 inComponent:0 animated:NO];

要更新 textField 中的值,请为您的 textField 设置委托(delegate)

- (void)textFieldDidBeginEditing:(UITextField *)textField
{
textField.text = [self.yourArrayName objectAtIndex:[self.yourPickerName selectedRowInComponent:0]];//component index may differ for u
}

关于ios - UiPickerView 在其行滚动之前无法工作 ios,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32325043/

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