Is there any way to change "DELETE" button from UITableViewCell ?

Hello,


I want to change DELETE button in UITableViewCell. Change position of button and want to change font and text color of that button.

Here I can only change button text in following delegate method :


- (NSArray<UITableViewRowAction *> *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewRowAction *callAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"Follow" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
       
        /
        NSLog(@"Follow Action fired");
    }];
    callAction.backgroundColor = [UIColor clearColor];
   
    return @[callAction];
}


But how to change other attributes of button. If anyone knows, please let me know. I think it should allow to customize. Please take it as a feature request.

I have facing same issue.

Is there any way to change "DELETE" button from UITableViewCell ?
 
 
Q