I have the following code to create a UIPickerView:
pickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(0.0f, 416.0f - height, 320.0f, height)]; pickerView.delegate = self; pickerView.showsSelectionIndicator = YES; [pickerView setSoundsEnabled:YES];
I would like to change the component widths and change the text size in each component. Is it possible to do this?
Thanks!
You can change the width by an appropriate delegate method
As for a custom text size, you can use the delegate to return custom views with whatever sized text you want:
Of course you will need modify these to have appropriate values for your app, but it should get you where you need to go.