I try to select a row in my PickerView but it doesn't works. It stays at the first row.
Here is my code:
@IBOutlet weak var pickerView: UIDatePicker!
func numberOfComponentsInPickerView(pickerView: UIPickerView!) -> Int
{
return 1
}
func pickerView(pickerView: UIPickerView!, numberOfRowsInComponent component: Int) -> Int
{
return 10
}
func pickerView(pickerView: UIPickerView!, titleForRow row: Int, forComponent component: Int) -> String!{
return String(row + 1)
}
//In viewDidLoad
pickerView.selectRow(6, inComponent: 0, animated: true)
The pickerView is working well it shows 1 to 10 but the selectRow doesn't works.
It should select the sixth row but it stays on the first one.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…