How do I make UITableViewCellAccessoryDisclosureIndicator visible in orange color instead of gray color?
I am new to iPhone development.I have created an application using UITableViewCellAccessoryDisclosureIndicator
. I give the line like this:
cell.accessory开发者_如何学GoType = 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 accessoryView
property of UITableViewCell
to retrieve UIView object and add whatever you want into that view in whatever color you desire.
精彩评论