I want to add an arrow to the right of each row in TableView on iPhone. Any ideas how to do this?
+1
A:
You mean the default arrow (a chevron) that lots of apps have?
UITableViewCell *myCell = ...; //GET a cell from somewhere.
myCell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
Louis Gerbarg
2009-02-26 06:28:37