I have an array of objects which populate a UITableView. When a user removes the last object from the array, I automatically create a new "default" object. However, in the TableView, when the user gets there, the list is still in "Edit" mode. Is there a way for me to programatically set the TableView back to "normal" mode again?
+6
A:
Set the table's editing
property to NO
. UITableView Reference
Ben Gottlieb
2008-11-22 22:18:17