Просто установите переменную для запоминания последней выбранной строки и затем перейдите к следующей.
var currentRow = 0
func pickerView(_ pickerView: AKPickerView, didSelectItem item: Int) {
switch pickerView {
case yearPickerView:
currentRow = item
default:
break
}
}
func buttonaction() { //Button triggers this
let nextRow = currentRow + 1
pickerview.selectRow(nextRow, inComponent: 0, animated: true)
}
Дайте мне знать, если это не работает для вас.
Найл