Hi there I am trying to change the text that is showing in the delete button when a user swipes a uitableviewcell inside my tableview.
I have seen an example in anot
Just return the string that you want to display instead of delete. Say you wish to show "Erase" for all rows, the above function should contain:
return @"Erase";
Read THIS
Also in your .h file, add the UITableViewDelegate in case your view controller is not a UITableViewController already. That is it can be either:
@interface SomeView : UIViewController
OR
@interface SomeView : UITableViewController