iOS 程序员iOS学习iOS 开发每天分享优质文章

willTransitionToState iOS 11 ta

2017-09-26  本文已影响123人  Booooooooom

最近iOS 11 版本发布,iOS 11就不吐槽了,毕竟每次更新系统都会有一大堆的适配。。。每年一次的煎熬。。。

下面就来说说这次的 iOS 11 tableView 中cell 自定义样式适配 遇到的坑

iOS 11中cell左滑后,右滑不会再将cell恢复至原始状态,需要点击才可以恢复。

在iOS 11以前,我们知道更改cell 的滑动删除的样式,可以从 layoutSubviews 中修改

- (void)layoutSubviews
{
    [super layoutSubviews];
    for (UIView subView in self.subviews)
    {
        if (subView.frame.orgin.x)  >=self.frame.size.width)
        {
            for (UIView childView in subView.subviews)
            {
                if ([childView isKindOfClass:[UIButton class]])
                {
                    UIButton delBtn = (UIButton )childView;
                    [delBtn setBackgroundColor:[UIColor orangeColor]];
                    [delBtn setTitleColor:[UIColor purpleColor] forState:(UIControlStateNormal)];
                    break;
                }
            }
        }
    }
}

或者是通过willTransitionToState 方法来进行更改,这里要说一下,这个方法优于上面的方法,因为这里是当滑动的时候才会去更新cell的删除样式,性能优化之路艰辛 ,改一点是一点

- (void)willTransitionToState:(UITableViewCellStateMask)state {
    NSLog(@"%s, %d", __FUNCTION__, __LINE__);    
 
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.0001 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
     
            for (UIView *subView in self.subviews) {
                
                NSLog(@"%----@%----", NSStringFromClass([subView class]) );
                if ([NSStringFromClass([subView class]) isEqualToString:@"UITableViewCellDeleteConfirmationView"]) {
                    NSLog(@"开始加载啦!!!!!!!!!!!!!!!!!!!!!!!!!!");
                    
                    UIButton *view = ((UIButton *)[subView.subviews firstObject]);
                    view.backgroundColor = [UIColor clearColor];
                    view.superview.backgroundColor = [UIColor clearColor];
                    
                    NSLog(@"%@", view.subviews[0]);
                    
                    UIView *backImageView = [[UIView alloc] init];
                    // 这一块的frame
                    backImageView.frame = CGRectMake(5, 10, 60, 150 - 20);
                    
                    backImageView.backgroundColor = [UIColor redColor];
                    
                    backImageView.layer.masksToBounds = YES;
                    backImageView.layer.cornerRadius = 10;
                    [view addSubview:backImageView];
                    
                    
                    UIImageView *iamgeView = [[UIImageView alloc] init];
                    [view addSubview:iamgeView];
                    iamgeView.frame = CGRectMake(15, 40, 36, 36);
                    iamgeView.image = [UIImage imageNamed:@"删除cell"];
                    
                    UILabel *label = [[UILabel alloc] init];
                    label.text = view.titleLabel.text;
                    label.frame = CGRectMake(0, 90, 66, 21);
                    [view addSubview:label];
                    
                    
                    label.textColor = [UIColor whiteColor];
                    label.textAlignment = NSTextAlignmentCenter;
                    [view setTitle:@"" forState:(UIControlStateNormal)];
                    
          
                    
                    
                }
            }

        
       
    });
    
}

上面的两种方式都是iOS 11以前可以生效的方法,但是在进入iOS11 之后,删除样式的cell 层次有改变,目前在我项目里面用的是第二种,所以这次也主要是针对第二种方式的改进,在通过层次图,我们发现


63569C04-7453-45B3-9FC1-998B9DF0D964.png

(这里红色区域及以上的控件是自己加上的,这里是选择了覆盖之前的样式)

先贴一下代码

 if ((([[[UIDevice currentDevice] systemVersion] floatValue] >= 11.0)?(YES):(NO))) {
            
            for (UIView *subView in self.superview.subviews) {
                if ([NSStringFromClass([subView class]) isEqualToString:@"UISwipeActionPullView"]) {
                    
                    UIView *suView =  (UIView *)(subView.subviews[0].subviews[0]);
                    suView.backgroundColor = [UIColor clearColor];

                    UIButton *view = ((UIButton *)[subView.subviews firstObject]);
                    view.backgroundColor = [UIColor clearColor];
                    view.superview.backgroundColor = [UIColor clearColor];
  
                    NSLog(@"%@", view.subviews[0]);
                    
                    UIView *backImageView = [[UIView alloc] init];
                    // 这一块的frame
                    backImageView.frame = CGRectMake(5, 10, 60, 150 - 20);
                    
                    backImageView.backgroundColor = [UIColor redColor];
                    
                    backImageView.layer.masksToBounds = YES;
                    backImageView.layer.cornerRadius = 10;
                    [view addSubview:backImageView];
                    
                    
                    UIImageView *iamgeView = [[UIImageView alloc] init];
                    [view addSubview:iamgeView];
                    iamgeView.frame = CGRectMake(15, 40, 36, 36);
                    iamgeView.image = [UIImage imageNamed:@"删除cell"];
                    
                    UILabel *label = [[UILabel alloc] init];
                    label.text = view.titleLabel.text;
                    label.frame = CGRectMake(0, 90, 66, 21);
                    [view addSubview:label];
                    
                    
                    label.textColor = [UIColor whiteColor];
                    label.textAlignment = NSTextAlignmentCenter;
                    [view setTitle:@"" forState:(UIControlStateNormal)];

                    
                }
            }
            
        }

这里是先通过判断系统是否是iOS 11,因为之前的代码在iOS 11之前都是可用的,所以走了分支,最后我会把完整的代码贴出来

通过控制台和层次图,我们找到了一个UISwipeActionPullView 这个类,通过观察,我们知道UISwipeActionPullView 这个类的父类就是 uitableViewWrapperView,我们的删除样式就在这个子集里面,那么就可以继续往下走了

B0D00490-4DF0-4E4E-AC3F-B59B86F1EAAE.png

一步步找他的子集,因为我们要找到最终显示的删除按钮,并进行改造

9F0506D9-F6BB-4D54-A6C3-0CA2361ADDF1.png

这个uibutton的子类,就是我们要找的按钮了!!!!再看看这个button子类里面有什么

244D32A3-C79B-42AA-88A6-92A09C619013.png

一个view,imageView,buttonLabel,标准的button,从buttonLabel的text中也可以看出,他就是我们要找的删除样式

因为我的项目中采用的是自定义的样式,所以这里我将他们的颜色都清除掉了,最终就只显示我需要的样式了。

好,完整的类在我的GitHub里面,觉得好用可以给star哦!!!
https://github.com/bommmmmmm/tableViewCustomDeletCell.git

===============================更新 ==========================

在iOS 11中,左滑cell时,有时不会触发willTransitionToState ,可能是系统原因,暂未解决。

上一篇 下一篇

猜你喜欢

热点阅读