in an App I have to maintain I had to set the rowHeight of a UIPickerView row to the value of 66. Now it can properly display three lines of text.
- (CGFloat)pickerView:(UIPickerView *)pickerView rowHeightForComponent:(NSInteger)component {
return 66;
}
Now the selection indicator height is too small for a row. Can anybody help me finding out how I can increase the height of that selection indicator?
Many thanks in advance. Uwe