Ok, maybe I\'m missing something really simple and I apologize if that\'s the case, however, I\'ve googled every permutation of the title and have not found! So this is sim
UIPickerView has delegate to set NSAttributeString for title at row and component we can set attribute color like below:
- (NSAttributedString *)pickerView:(UIPickerView *)pickerView attributedTitleForRow:(NSInteger)row forComponent:(NSInteger)component {
NSDictionary *attrs = @{NSForegroundColorAttributeName : [UIColor redColor]};
NSString *title = @"title"
return [[NSAttributedString alloc] initWithString:title attributes:attrs];
}