开发者

UIPickerView disable row selection

开发者 https://www.devze.com 2022-12-08 06:26 出处:网络
I want to disable the selection of certain rows in my UIPickerView. Like in the Coundown timer, where you try to choose 0, it doesn\'t let you and slips back up to 1. Or how yo开发者_如何转开发u can l

I want to disable the selection of certain rows in my UIPickerView. Like in the Coundown timer, where you try to choose 0, it doesn't let you and slips back up to 1. Or how yo开发者_如何转开发u can limit the date in the Date Picker...

How do a disable rows in a UIPickerView?


In UIPickerView delegate method

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

you can check if this selection is valid and scroll to the appropriate row if it is not (using pickerview's

- (void)selectRow:(NSInteger)row inComponent:(NSInteger)component animated:(BOOL)animated

method.)

It looks that standard Clock application works this way.

0

精彩评论

暂无评论...
验证码 换一张
取 消