views:

247

answers:

1
+4  Q: 

Exit Edit Mode

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