iphone - Change disclosure indicator color on cell selection -


I've read some posts on this, but still my answer can not be answered.

I have a disclosure declaration Enter image details here

I add it like this:

  Cell Accessory type = UITableViewCellAccessoryDisclosureIndicator;   

Everything is fine and good, the only thing I want to change is that when I press the cell, the disclosure indicator changes white color  Enter the image details here I do not want this, so my question is, how is the disclosure pointer color fixed, not changed?

You need to use a custom secondary view for it. Syntax:

  cell.searchview = [[[UIImageView alloc] initWithImage: [UIImage imageNamed: @ "helper page"]] autorelease];   

Here you are assigning image view with a helpful page

to the secondary view of your cell Are there.

Comments