I have a grouped tableview with two sections, and I want the cells (in editing mode) to look like the "add stocks view" in the stocks application from Apple. I want the delete button to be positioned directly over the cells, and not to the le开发者_如何学Pythonft of the cells.
Any ideas on how to do this?
Try implementing tableView:shouldIndentWhileEditingRowAtIndexPath:
in table delegate and return NO from it.
精彩评论