UIPickerView选择一个默认的值

原文地址:UIPickerView的使用技巧之二----默认选中作者:殷昭
UIPickerView选择一个默认的值
呵呵,个人建议--->用显示选中结果的UIView  的tag值记录上次选中的位置

[pickerView selectRow:boundButton.tag inComponent:0 animated:YES];


注:参数一选中默认值在选择器的位置的行数

参数二选中默认值在选择器的位置的组件索引

参数三是否设置过度动画


PS: 这样可以选中默认行,但不会触发

- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component 方法


可以使用

[self pickerView:self.***PickView didSelectRow:openMoOrAf inComponent:0];

这样就可以也到具体的值,且获得点击Row 事件.



你可能感兴趣的:(UIPickerView选择一个默认的值)