views:

801

answers:

2

I want to add an arrow to the right of each row in TableView on iPhone. Any ideas how to do this?

+1  A: 
iPhoney
+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