I had an app about a year and half ago I was fooling with that I decided to come back to it. When I left it the pickerview was visible and worked. Now it still works but the text color is black along with the background. How can I get the text color different with these functions?
- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component{
if (component == SIZE)
return [arraySize count];
if (component == MEASURE)
return [arrayMeasure count];
return 0;
}
- (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component{
if (component == SIZE)
return [arraySize objectAtIndex:row];
if (component == MEASURE)
return [arrayMeasure objectAtIndex:row];
return 0;
}