iOS收藏tableview和cell相关iOS 开发每天分享优质文章

UITableView左滑删除自定义(支持ios11)

2017-11-16  本文已影响2674人  flowerflower

之前写过一篇UITableView定制自定义cell左滑删除按钮小窍门,当时电脑未升级xcode还没有升级,所以当使用ios11时候会发现存在一些问题,之前写的那篇文章也有笔者提到此问题,为此最近升级了电脑系统版本以及同时升级了xcode9.打算对此问题好好的死磕一番。我觉得作为一个程序员来说,就是要有一颗死磕到底的心,这样才会对技术方面有所成长,否则有一种一种始终在原地踏步的感觉。

<<一.视图层级关系>>(xcode8 ios10 和xcode ios11)

Snip20171116_2.png
Snip20171116_3.png

<<二.对比分析>>

iOS11的左滑选项的视图层级有了较大改变。最显著的改变是UITableViewCell的子视图变成了UITableView的子视图。总结一下就是:

Xcode8编译(ios10): UITableView -> UITableViewCell -> UITableViewCellDeleteConfirmationView -> _UITableViewCellActionButton
Xcode9编译(ios11):UITableView -> UISwipeActionPullView -> UISwipeActionStandardButton

<<三.理论分析>>

针对于上篇文章没有适配到ios11,显然这样是不行的,总不能跟产品说这就是ios11的个性吧。这样显然你可能也许就gg了。
为了同时支持iOS8-10和iOS11, 我把操作选项外观的代码统一放在UITableView的ViewController的- (void)viewDidLayoutSubviews实现。

为啥在viewDidLayoutSubviews中实现理由:

其一:因为iOS8-10中,左滑选项是UITableViewCell的子视图,而在iOS11中,左滑选项变成了UITableView的子视图。虽然可以用tabelCell.superview来获取tableView,不过我认为最好从高层级去操作低层级。所以统一在UITableView层处理。
其二:OS8-10的UITableViewCellDeleteConfirmationView子视图出现得较晚。在代理方法willBeginEditingRowAtIndexPath中还没有出现,而在viewDidLayoutSubviews则可以保证子视图出现。

<<四.简要分析>>

1.定义一个属性用来记录当前左滑的index
@property (strong, nonatomic) NSIndexPath* editingIndexPath;  //当前左滑cell的index,在代理方法中设置
2.调用viewDidLayoutSubviews方法
- (void)viewDidLayoutSubviews
{
    [super viewDidLayoutSubviews];
    
    if (self.editingIndexPath){
        [self configSwipeButtons];
    }
}
3.针对不同的ios系统版本进行遍历
- (void)configSwipeButtons{
    // 获取选项按钮的reference
    if (@available(iOS 11.0, *)){
    
        // iOS 11层级 (Xcode 9编译): UITableView -> UISwipeActionPullView
        for (UIView *subview in self.tableView.subviews){
            NSLog(@"%@-----%zd",subview,subview.subviews.count);
            if ([subview isKindOfClass:NSClassFromString(@"UISwipeActionPullView")] && [subview.subviews count] >= 1){
                // 和iOS 10的按钮顺序相反
                UIButton *deleteButton = subview.subviews[0];
                [self configDeleteButton:deleteButton];
            }
        }
    }else{
        // iOS 8-10层级 (Xcode 8编译): UITableView -> UITableViewCell -> UITableViewCellDeleteConfirmationView
        JYShopCell *tableCell = [self.tableView cellForRowAtIndexPath:self.editingIndexPath];
        for (UIView *subview in tableCell.subviews){
            NSLog(@"subview%@-----%zd",subview,subview.subviews.count);
            
            if ([subview isKindOfClass:NSClassFromString(@"UITableViewCellDeleteConfirmationView")] && [subview.subviews count] >= 1){
                UIButton *deleteButton = subview.subviews[0];
                [self configDeleteButton:deleteButton];
            }
        }
    }
}
- (void)configDeleteButton:(UIButton*)deleteButton{
    if (deleteButton) {
        [deleteButton setImage:[UIImage imageNamed:@"list_deleting"] forState:UIControlStateNormal];
        [deleteButton setBackgroundColor:[UIColor colorWithHexString:@"F2F2F2"]];
    }
}
4.代理实现
- (void)tableView:(UITableView *)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath{
    self.editingIndexPath = indexPath;
    [self.view setNeedsLayout];   // 触发-(void)viewDidLayoutSubviews
}
- (void)tableView:(UITableView *)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath{
    
    self.editingIndexPath = nil;
}

<<五.代码奉上>>

请使劲使劲的戳我

上一篇下一篇

猜你喜欢

热点阅读