If Editing mode is enabled for the tableview it shows a button titled Edit, when pressing it it changes the title to done
i was wondering if there is a way to change the
Here is the method to change it for Swift
override func setEditing (editing:Bool, animated:Bool) { super.setEditing(editing,animated:animated) if (self.editing) { self.editButtonItem().title = "Editing" } else { self.editButtonItem().title = "Not Editing" } }