Exit edit mode

I have an array of objects that populate a UITableView. When the user removes the last object from the array, I automatically create a new default object. However, in TableView, when the user gets to the place, the list is still in "Edit" mode. Is there a way for me to programmatically return TableView to β€œnormal” mode again?

+5
source share
1 answer

Set the table property editingto NO. UITableView Reference

+7
source

All Articles