I am new to iPhone development.I have created an application using UITableViewCellAccessoryDisclosureIndicator. I give the line like this:
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
It shows an indicator arrow in gray color. I want to display indicator in orange color instead of gray color. What should I do?
You have to use
accessoryViewproperty ofUITableViewCellto retrieve UIView object and add whatever you want into that view in whatever color you desire.