设置 UIPickerView 的默认值:超出范围的索引

Posted

技术标签:

【中文标题】设置 UIPickerView 的默认值:超出范围的索引【英文标题】:Set a default Value of a UIPickerView: index beyond bounds 【发布时间】:2020-06-03 20:01:02 【问题描述】:

我正在尝试为 PickerView 元素设置默认值,但运行时出现错误:索引超出债券,我的意图是从“困难”选项作为默认值,即 nivel = 3。

@IBOutlet weak var spinner: UIPickerView!

override func viewDidLoad() 
    super.viewDidLoad()
    self.spinner.delegate = self
    self.spinner.dataSource = self
    nivel = 3
    lista_parametros = ["All","Easy","Medium","Dificult"]
    self.spinner.selectRow(4, inComponent: nivel, animated: true) /// the error is here !! when running 


func numberOfComponents(in pickerView: UIPickerView) -> Int 
    return 1


func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int 
    return lista_parametros.count


func pickerView(_ pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? 
     return lista_parametros[row]
 

 func pickerView(_ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) 
     nivel = row
     UserDefaults.standard.set(nivel,forKey: "nivel")
 

【问题讨论】:

【参考方案1】:

索引从0 开始。所以你应该把它修改成这样:

spinner.selectRow(3, inComponent: nivel, animated: true)

【讨论】:

好的,现在当我第一次打开这个活动时,微调器可以在困难的位置正确打开,但是如果我在这个微调器中选择另一个位置(例如我手动将它们调整为简单)然后打开再次执行此活动,然后发生相同的错误【参考方案2】:

必须在第一个参数处进行选择:

self.spinner.selectRow(nivel, inComponent: 0, animated: true)

【讨论】:

以上是关于设置 UIPickerView 的默认值:超出范围的索引的主要内容,如果未能解决你的问题,请参考以下文章

如何解决问题 UIPickerView 致命错误:索引超出范围 [IOS Swift 5.1 Xcode 11.2]

致命错误:索引超出范围 / UIPickerView /Array/ Swift

Swift/Xcode - AKPickerView/UIPickerView - 致命错误:索引超出范围

触摸 UITextField 时设置 UIPickerView 的默认值

在Python中获取超出范围的索引默认值[重复]

iOS:UIPickerView 默认尺寸