vote up 1 vote down star

Hi

I want to change the border color of a UIPickerView. I do not see a tint property for the UIPickerView. Is there any way this could be done? Or a workaround?

Thanks.

flag

4 Answers

vote up 2 vote down check

If you just want a workaround, take a screen shot in the simulator, open it in photoshop, crop it to just the UIPickerView area, make the center transparent, apply whatever tint you want, add that image to your project, and add it as a UIImageView on top of the UIPickerView.

link|flag
Thanks. No other way we can change the tint? – lostInTransit Jun 8 at 16:56
I believe the background is just an image anyway, so it's likely that even if you were able to find the element in the subviews, it wouldn't be tint-able. – Ed Marty Jun 9 at 13:44
vote up 0 vote down

hey u cannot subview the UIPickerview please suggest some other way

link|flag
vote up 0 vote down

This suggestion actually is a good work around - the only thing is you need to create left, right, top, bottom images to overlay the UIPickerView so the picker is still selectable. Otherwise you will mask it so it cannot be accessed.

link|flag
vote up 1 vote down

My UIPickerView has 3 components. And no Selection Indicator.

This gives it 11 subviews. [[picker subviews] count]

Hiding the first and the last subview totally removes the background.

[(UIView*)[[picker subviews] objectAtIndex:0] setHidden:YES]; [(UIView*)[[picker subviews] objectAtIndex:10] setHidden:YES];

Hiding every third other subview (indexes 1, 4 and 7) hides the opaque background on the components. Giving quite a nice effect that I can skin as I desire.

Hope that helps someone :)

link|flag
Isn't this really a hack? Apple could reject an app for doing this... – lostInTransit Sep 5 at 5:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.