Is it possible to rename the "Delete" button when in tabular mode drag a table view to edit mode?
The UITableView delegate should implement:
- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
Run
And return your own header for deletion.
From UITableViewDelegate docs
In Swift:
override func tableView(tableView: UITableView, titleForDeleteConfirmationButtonForRowAtIndexPath indexPath: NSIndexPath) -> String? { return "Remove" }
the code:
*- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath { return @"Rename"; // or put something else }*