Ci saranno quattro passi qui - imposteremo alcune costanti per contenere i dati della vista raccoglitrice e di un un po 'di configurazione, quindi aggiungeremo i metodi UIPickerViewDataSource
e UIPickerViewDelegate
e termineremo con l'inizializzazione viewDidLoad
.
In primo luogo, la configurazione:
private let pickerViewData = Array(0...59) // contents will be 0, 1, 2, 3...59, change to whatever you want
private let pickerViewRows = 10_000 // any big number
private let pickerViewMiddle = ((pickerViewRows/pickerViewData.count)/2) * pickerViewData.count
Nota la costante pickerViewMiddle
- si calcola per rendere molto facile per ottenere il nostro valore corrente dalla riga offset. On per l'origine dei dati - abbiamo davvero solo bisogno di fornire un titolo per ogni riga, ma aggiungeremo un metodo di supporto per convertire un numero di riga per un valore dalla matrice:
extension ViewController : UIPickerViewDataSource {
func valueForRow(row: Int) -> Int {
// the rows repeat every `pickerViewData.count` items
return pickerViewData[row % pickerViewData.count]
}
func rowForValue(value: Int) -> Int? {
if let valueIndex = find(pickerViewData, value) {
return pickerViewMiddle + value
}
return nil
}
func pickerView(pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String! {
return "\(valueForRow(row))"
}
}
E infine noi' ll configurare il delegato:
extension ViewController : UIPickerViewDelegate {
func numberOfComponentsInPickerView(pickerView: UIPickerView) -> Int {
return 1
}
func pickerView(pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int {
return pickerViewRows
}
// whenever the picker view comes to rest, we'll jump back to
// the row with the current value that is closest to the middle
func pickerView(pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
let newRow = pickerViewMiddle + (row % pickerViewData.count)
pickerView.selectRow(newRow, inComponent: 0, animated: false)
println("Resetting row to \(newRow)")
}
}
per inizializzare, nel vostro impostare l'origine delegato e dati viewDidLoad
e poi passare alla riga corretta nel bel mezzo del tuo raccoglitrice:
self.picker.delegate = self
self.picker.dataSource = self
let initialValue = 0
if let row = rowForValue(initialValue) {
self.picker.selectRow(row, inComponent: 0, animated: false)
}
// or if you just want to start in the middle:
// self.picker.selectRow(pickerViewMiddle, inComponent: 0, animated: false)
Grazie! Funziona perfettamente! – ThomasGulli
Come menzionato in [questa risposta] (http://stackoverflow.com/a/367436/172218) impostando il numero di righe nel selettore su "qualsiasi numero grande" svita VoiceOver, fornendo "[elemento] di [numero grande] ] ", che è un problema di accessibilità. In qualche modo intorno a questo? –
Ciao, Nate! Dove dichiari la tua configurazione? L'ho dichiarato alla mia classe, ma dammi un errore con l'istanza non può essere utilizzato nella mia classe. –