views:

360

answers:

1

I've got 2 sections in a UITableView. The tableview needs to stay in edit mode, but only the first section is editable. Specifically, I want the second section to display as it would if the table were not in edit mode (tableviewcells are their original widths in stead of the left side being in line with the cells of the first (editable) section, which are aligned right, about 20% less wide than when in non-editing mode, and have the editing (-) icon to their left). NOTE: the problem here is only with the appearance of the cells, not with the functional aspect of editable vs. non-editable cells.

Anyone know if this is possible within a single UITableView?

+1  A: 

Have you implemented tableView:canEditRowAtIndexPath: in your UITableViewDataSource? That should give you the control you're looking for.

Sixten Otto
That is exactly what I was looking for...I can't believe I missed it!!! Thanks :)
jtrim