如何在 iOS 编程中显示 UIPickerView 先前选择的值
问问题
615 次
1 回答
0
你必须为它取两个变量 1) currentSelectedIndex
2)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 回答