Hi,
In the UIPickerView I use in my application, I set the default value by using this -
and I use the
function to get the value of whatever number I pick from the UIPicker view.
The problem I am facing is that if I want to select the default item shown on the UIPickerView, untill I roll the wheel and come back to the default value, I am unable to select the default value. The `didSelectRow` function does not get called when I click on the default value.
Would someone be able to help me out with this problem?
In the UIPickerView I use in my application, I set the default value by using this -
Code:
[pickerView selectRow:0 inComponent:0 animated:NO];
Code:
- (void)pickerView:(UIPickerView *)thePickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
The problem I am facing is that if I want to select the default item shown on the UIPickerView, untill I roll the wheel and come back to the default value, I am unable to select the default value. The `didSelectRow` function does not get called when I click on the default value.
Would someone be able to help me out with this problem?