我想更改 UITableViewCell 中的 DELETE 按钮。实际上,我需要:
- 改变按钮的位置
- 字体
- 该按钮的文本颜色。
在这里,我只能在以下委托方法中更改按钮文本:
- (NSArray<UITableViewRowAction *> *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewRowAction *viewAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"Follow" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
NSLog(@"View Action fired");
}];
viewAction.backgroundColor = [UIColor clearColor];
return @[callAction];
}
但是如何更改按钮的其他属性。如果有人知道,请告诉我。
谢谢。