Our UIPickerView has a dark background and the selection lines are incredibly hard to see. Is there anyway to change them to a colour of my choosing?
Update: I'm talking about the --- above and below the "Panda" item.
Cat
Dog
Elephant
-----------
Panda
-----------
Bear
Giraffe
The best solution I can offer is to place 2 UIImages on top of your picker wheel at the width of 1 and length set to your preference. This is how I overcame this.
It does not work well if you require multiple size views so programatically doing it to cater for your size changes would be the next best solution. To programatically change the size using if statements:
How to resize the image programmatically in objective-c in iphone
If you change the size based on orientation add an if
statement that handles orientation like so:
if (UIDeviceOrientationIsLandscape([UIDevice currentDevice].orientation))
{
// code for landscape orientation
}
if (UIDeviceOrientationIsPortrait([UIDevice currentDevice].orientation))
{
// code for Portrait orientation
}
Kind regards