up vote 4 down vote favorite
2
share [g+] share [fb]

I have a custom UIPickerView where I use:

-(UIView *)pickerView:(UIPickerView *)pickerView
           viewForRow:(NSInteger)row
         forComponent:(NSInteger)component 
          reusingView:(UIView *)view

to fill the picker with UIView which has two labels. Is there a way to enable the behavior of highlighting the selected row when touched?

link|improve this question

57% accept rate
feedback

1 Answer

By just adding this at initialization as pickerView.showsSelectionIndicator = YES; then this is what you realy want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.