Can I programmatically scroll to a desired row in

2019-01-23 22:40发布

By default the first row is highlighted after initializing the UIPickerView. How do i highlight a particular row or scroll to particular row programmatically?

4条回答
爷、活的狠高调
2楼-- · 2019-01-23 23:23

Yes, it's very easy [picker selectRow:row inComponent:component animated:NO];

查看更多
何必那么认真
3楼-- · 2019-01-23 23:26

Working in iOS 9 with XCode 7.3, to make runtime changes to data in a picker view called fieldPicker:

// first load your new data to your picker view's data source (not shown here...) then load the data into the picker view using it's delegate
    [self.fieldPicker reloadAllComponents];

    // now that the data is loaded, select a row in the picker view through it's delegate
    [self.fieldPicker selectRow:([self.theFields count] - 1) inComponent:0 animated:NO];

// retrieve the row selected in the picker view to use in setting data from your data source in textboxes etc.
    long row = (long)[self.fieldPicker selectedRowInComponent: 0];
查看更多
【Aperson】
4楼-- · 2019-01-23 23:33

As always, this is thoroughly documented. The Apple documentation for UIPickerView should tell you that the method you probably want is – selectRow:inComponent:animated:.

查看更多
迷人小祖宗
5楼-- · 2019-01-23 23:34

If you want to trigger delegate's method pickerView:didSelectRow:inComponent, you should call it manually:

Obj-C

[self.myPickerView selectRow:0 inComponent:0 animated:NO];
[self pickerView:self.myPickerView didSelectRow:4 inComponent:0];

Swift

self.myPickerView.selectRow(0, inComponent: 0, animated: false)
self.pickerView(self.myPickerView, didSelectRow: 0, inComponent: 0)
查看更多
登录 后发表回答