I have a UIPicker and have setup my delegate methods.
I want something to happen when the user TAPS on the selected picker item. Handling it in:
- (void)pickerView:(UIPickerView *)aPickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
Triggers the event to occur when the picker item is selected not tapped.
How can I trigger an event when the selected picker item is tapped?