美文网首页
iOS UITableView自定义左滑编辑按钮样式

iOS UITableView自定义左滑编辑按钮样式

作者: _Boring | 来源:发表于2019-12-12 10:45 被阅读0次

    自定义左滑编辑按钮样式,具体代码编写逻辑我就不写了,网上很多文章都有介绍,我就贴下适配各个版本系统下图层代码和注意事项了。

    一、触发修改样式的方法

    1、控制器中使用viewDidLayoutSubviews
    2、自定义TableView中使用layoutSubviews

    - (void)viewDidLayoutSubviews {
        [super viewDidLayoutSubviews];
        if (self.editingIndexPath) {
            [self csc_configTableViewSwipeButtons];
        }
    }
    

    二、图层代码

      - (void)csc_configTableViewSwipeButtons {
        //XCode 10.2.1
        //iOS 13层级: UITableView -> UISwipeActionPullView
        if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"13.0")) {
            for (UIView *subview in self.tableView.subviews) {
                if ([subview isKindOfClass:NSClassFromString(@"_UITableViewCellSwipeContainerView")]) {
                    for (UIView *subView_sub in subview.subviews) {
                        if ([subView_sub isKindOfClass:NSClassFromString(@"UISwipeActionPullView")] &&
                            [subView_sub.subviews count] >= 1) {
                            subView_sub.backgroundColor = [UIColor grayBackgoundColor];
                            // 和iOS 10的按钮顺序相反
                            UIButton *deleteButton = subView_sub.subviews[0];
                            [self csc_configTableViewDeleteButton:deleteButton];
                            break;
                        }
                    }
                }
            }
        }
        else if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"11.0")) {
            // iOS 11-12层级: UITableView -> UISwipeActionPullView
            for (UIView *subview in self.tableView.subviews) {
                if ([subview isKindOfClass:NSClassFromString(@"UISwipeActionPullView")] &&
                    [subview.subviews count] >= 1) {
                    subview.backgroundColor = [UIColor grayBackgoundColor];
                    // 和iOS 10的按钮顺序相反
                    UIButton *deleteButton = subview.subviews[0];
                    [self csc_configTableViewDeleteButton:deleteButton];
                    break;
                }
            }
        }
        else {
            // iOS 8-10层级: UITableView -> UITableViewCell -> UITableViewCellDeleteConfirmationView
            YDCouponTableViewCell *tableCell = [self.tableView cellForRowAtIndexPath:self.editingIndexPath];
            for (UIView *subview in tableCell.subviews) {
                if ([subview isKindOfClass:NSClassFromString(@"UITableViewCellDeleteConfirmationView")] &&
                    [subview.subviews count] >= 1) {
                    subview.backgroundColor = [UIColor grayBackgoundColor];
                    UIButton *deleteButton = subview.subviews[0];
                    [self csc_configTableViewDeleteButton:deleteButton];
                    break;
                }
            }
        }
    }
    

    方法在里写的两个方法中调用。
    SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO是我写的宏判断系统的
    csc_configTableViewDeleteButton写配置样式就好。

    三、UITableVIew Delegate方法

    在iOS13以前,只需要这样写

    - (void)tableView:(UITableView *)tableView willBeginEditingRowAtIndexPath:(nonnull NSIndexPath *)indexPath {
        self.editingIndexPath = indexPath;
        //这里会触发viewDidLayoutSubviews方法,从而执行修改样式代码
        [self.view setNeedsLayout];
    }
    
    - (void)tableView:(UITableView *)tableView didEndEditingRowAtIndexPath:(nullable NSIndexPath *)indexPath {
        self.editingIndexPath = nil;
    }
    

    在iOS13中,同一个cell多次左右滑动只会调用一次willBeginEditingRowAtIndexPath,就出现了第一次样式是对的,后面的就没了。
    于是我加了下面一段代码

    - (NSArray*)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(nonnull NSIndexPath *)indexPath {
        //系统大于13
        if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"13.0")) {
            self.editingIndexPath = indexPath;
            [self.view setNeedsLayout];
        }
        
        UITableViewRowAction *deleteAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
            [tableView setEditing:NO animated:YES];
            
        }];
        return @[deleteAction];
    }
    

    目前没什么问题,就先这样吧!
    有时间了再研究研究。

    相关文章

      网友评论

          本文标题:iOS UITableView自定义左滑编辑按钮样式

          本文链接:https://www.haomeiwen.com/subject/hwzogctx.html