views:

136

answers:

1

In my app I have a UITableView with a UITableViewCellAccessoryDisclosureIndicator. I don't want to change the whole indicator, but I want to make it white instead of gray. How can I do it?

Thanks in advance!

+2  A: 

You cant, you will have to create your own...you can either add it to the content view directly or set the accessoryView property of UITableViewCell, here is a ref ref

Daniel
So the best way is just to put a white disclosure button image into the accessory view?
Knodel
yeah this is the only way +1
prendio2