handle clicks to UIPickerView rows
I handle clicks to UIPickerView rows with a regular method
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
but it works only for non-current rows. My problem is that I need to get taps on the already selected (current) row also. Any ideas or workarounds for didSelec开发者_高级运维tRow? Thanks.
You could put a clear button over each row and handle touches from it like any other button.
精彩评论