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 Done Button title to something else ?
i already changed the title for the done button.
the code i used is
self.navigationItem.rightBarButtonItem = self.editButtonItem;
self.editButtonItem.title = @"Change";
Now The Edit is Change
How to make Done to something else ?
You can change the title of the edit button like this:-
its working like edit:-
TO