Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UITableViewCell - displaying accessory view beside rearrange control

In the Safari bookmarks manager on iPhone, the UITableView seems to have behaviour that isn't standard. I'm referring to this:

alt text http://cl.ly/b7f0faead6a8586d3470/content

In edit mode, the bookmark UITableViewCells have both a rearrange control and a UITableViewCellAccessoryDisclosureIndicator accessory view next to them. How do you get both? In my table views, when you go into edit mode to reveal the rearrange control, the control takes the place of the accessory view, it doesn't display both.

like image 935
indragie Avatar asked Jun 25 '10 03:06

indragie


1 Answers

Use editingAccessoryType property of UITableViewCell.

like image 72
Costique Avatar answered Dec 08 '22 09:12

Costique