iOS 8之前使用如下方式自定义UITableView左划后显示的文字,不过该样式太单一了,而且只能显示一个:
- (nullable NSString *)tableView:(UITableView *)tableView
titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(3_0) __TVOS_PROHIBITED;
iOS8之后,只需要一个tableView代理方
tableView:editActionsForRowAtIndexPath:
和一个类UITableViewRowAction
就可以了。 rowAction可以设置style、title、backgroundColor、backgroundEffect,在block中实现点击事件
注意 : title 可以设置,但是title的文字颜色没办法设置。
其中不修改backgroundColor时,backgroundColor的颜色是由style决定的.
- UITableViewRowActionStyleDestructive时是红色的删除样式,
- UITableViewRowActionStyleNormal时是灰色样式,类似于微信好友列表左划后的“备注”。
- (nullable NSArray<UITableViewRowAction *> *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(8_0) __TVOS_PROHIBITED;
当实现该代理方法后,以下的这个代理方法就不执行了:
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath;
- (NSArray<UITableViewRowAction *> *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath
{
//设置删除按钮
UITableViewRowAction *deleteRowAction = [UITableViewRowActionrowActionWithStyle:UITableViewRowActionStyleDefaul ttitle:@"删除"handler:^(UITableViewRowAction *action,NSIndexPath *indexPath) {
[self.arrremoveObjectAtIndex:indexPath.row];
[self.tableViewdeleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationTop];
}];
//设置收藏按钮
UITableViewRowAction *collectRowAction = [UITableViewRowActionrowActionWithStyle:UITableViewRowActionStyleNormal title:@"收藏"handler:^(UITableViewRowAction *action,NSIndexPath *indexPath) {
UIAlertView *alertView = [[UIAlertViewalloc]initWithTitle:@"收藏"message:@"收藏成功"delegate:selfcancelButtonTitle:@"确定"otherButtonTitles:nil,nil];
[alertView show];
}];
//设置置顶按钮
UITableViewRowAction *topRowAction = [UITableViewRowActionrowActionWithStyle:UITableViewRowActionStyleDefaul ttitle:@"置顶"handler:^(UITableViewRowAction *action,NSIndexPath *indexPath) {
[self.arrinsertObject:self.arr[indexPath.row]atIndex:0];
[self.arrremoveObjectAtIndex:indexPath.row +1];
NSIndexSet *set = [NSIndexSetindexSetWithIndex:0];
[tableView reloadSections:setwithRowAnimation:UITableViewRowAnimationTop];
/**
* tableView 刷新时如果确定哪个row 或者section就刷新对应的,不要走reloadData
*/
}];
topRowAction.backgroundColor = [UIColorblueColor];
collectRowAction.backgroundEffect = [UIBlurEffecteffectWithStyle:UIBlurEffectStyleDark];
return @[deleteRowAction,collectRowAction,topRowAction];
}
参考 :https://blog.csdn.net/mlcldh/article/details/54947302
https://blog.csdn.net/textfielddelegate/article/details/50599151
https://www.cnblogs.com/zj901203/p/4606804.html
https://blog.csdn.net/zhanglizhi111/article/details/52922915