Change disclosure indicator color on cell selection

ios, ipad, iphone, objective-c

Solution

You need to use a custom accessory view for this. Syntax:

cell.accessoryView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"accessory.png"]] autorelease];

Here you are assigning an image view with an image accessory.png

to your cell's accessory view.

Problem

I've read some posts on this, but still can't get the answer to my question. I have a disclosure indicator. I add it like this: ``` cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; ``` Everything works fine and is good, the only thing i want to change is when i press down the cell, disclosure indicator changes color to white. I don't want that. So my question is how to make the disclosure indicator color fixed, and not changing?

Original source