Quote:
|
I'm also trying to change the highlight colour for my tables. I assume this is a simple call, but can't seem it find it.
|
I don't think there's a way to do that directly.
You might use the selectedBackgroundView of UITableViewCell to get this effect.
Also, you could set selectionStyle to UITableViewCellSelectionStyleNone. Setting it to UITableViewCellSelectionStyleGray will probably get you a grey selection color, so that gives you two choices, blue or grey. If you set the selection style to none you could probably do the selection yourself in some way.
I haven't tried these things though.