views:

11

answers:

1

Hi,

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 left of the cells.

Any ideas on how to do this?

Thanks!

+1  A: 

Try implementing tableView:shouldIndentWhileEditingRowAtIndexPath: in table delegate and return NO from it.

Vladimir
oh yes, that did the trick.. Thank you :)
Madoc