如何在默认索引之外设置UIPickerView?

时间:2011-02-15 13:10:31

标签: ios uipickerview

我有一个值为5的整数,我想用这个索引启动我的UIPickerView,现在该怎么办? 通常UIPickerView在默认的0索引行上,但我希望它在用户定义的索引上,可以是5,6或任何其他数字。

2 个答案:

答案 0 :(得分:45)

假设您的选择器在属性“myPicker”中被引用,那么在viewDidLoad中,转到:

[self.myPicker selectRow:rowInt inComponent:componentInt animated:NO]

答案 1 :(得分:0)

针对Swift 4.2的更新

要在UIPickerView中设置默认行,

  myPicker.selectRow(5, inComponent: 0, animated: true)

其中myPicker是UIPickerView的名称,5是所需行的索引。