I have a problem with UIPickerView...
I created a UIPickerView with two components with two rows for the first one, and three rows for the second one. I'm trying to create a custom view for each row in each component. Okay, I've subclassed UIView and added one UIImageView and one UILabel.
I've used the - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view
method to create the custom view and it seems to work ok.
But when each row "enters" the middle area of the UIPickerView, all the content disappears!
Here's an image:
Anyone with ideas?