I want to show some color name in PickerView, which are constant from UIColr class
pickerContent = [[NSArray alloc] initWithObjects:[UIColor redColor],[UIColor orangeColor],[UIColor purpleColor],[UIColor yellowColor], nil ];
and my implemented function for PickerView label is
- (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component
{
return [(UIColor *)[self.pickerContent objectAtIndex:row] description];
}
i Know description will not give me my desired output.
so please help with your valuable suggestion.