美文网首页
cell 的优化问题(自己项目中遇到的)

cell 的优化问题(自己项目中遇到的)

作者: Ezreallp | 来源:发表于2019-05-30 19:40 被阅读0次

    要求是:在cell最下面添加scrollView,然后在scrollView上面添加图片,这里就需要对cell复用问题进行优化。不对之处还望指出,谢谢!

    假如我第一个cell上面需要显示3张图片,复用第一个cell的时候,假如这个时候需要显示5张图片,我们此时只需要再创建2张图片的button就可以了。如果这个时候需要显示少于3张图片的话,我们此时只需要删除掉后两个button就可以了。然后只需要重新绘制button上面的图片就可以了。

    for (UIView *subView in _scrollView.subviews) {
            if (subView.tag >= StartTag + _message.pictures.count) {
                [subView removeFromSuperview];
            }
        }
    
    if (_message.pictures == nil || _message.pictures.count <= 0) {
            
        } else {
            //图片处理
            for (int i = 0; i<_message.pictures.count; i++) {
                int tag = StartTag + i;
                UIButton *imageBtn = [_scrollView viewWithTag:tag];
                if (imageBtn == nil) {
                    imageBtn = [[UIButton alloc] initWithFrame:CGRectMake(i * (_scrollView.height + 10), 0, _scrollView.height, _scrollView.height)];
                    imageBtn.tag = tag;
                    [_scrollView addSubview:imageBtn];
                }
                
                NSURL *url = [NSURL URLWithString:_message.pictures[i]];
                [imageBtn sd_setImageWithURL:url forState:UIControlStateNormal placeholderImage:[UIImage imageNamed:@"nouse"] options:SDWebImageAllowInvalidSSLCertificates completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
                    
                }];
            }
    
    

    相关文章

      网友评论

          本文标题:cell 的优化问题(自己项目中遇到的)

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