0

如何在 iOS 编程中显示 UIPickerView 先前选择的值

4

1 回答 1

0

你必须为它取两个变量 1) currentSelectedIndex2)prevSelectedIndex

并且在

- (void)pickerView:(UIPickerView *)pV didSelectRow:(NSInteger)row inComponent:(NSInteger)component
{
    prevSelectedIndex = currentSelectedIndex
    currentSelectedIndex = row;
    //your Code...
}

现在您可以使用prevSelectedIndex来获取pickerDataSourceArray先前选择的值。

于 2013-06-11T11:14:39.950 回答