app加载多张高清大图卡顿以及崩溃

场景: collection几百个cell 加载的图片每个原图很大  加载时候可以先显示不那么高清的图(可理解为加载缩略图)

   CGSize thumbnailSize = CGSizeMake(imgcellW, imgcellH); // Thumbnail will bounds to (200,200)

    [self.carImgV sd_setImageWithURL:[NSURL URLWithString:model.imageUrl] placeholderImage:self.placeholder options:0 context:@{SDWebImageContextImageThumbnailPixelSize:@(thumbnailSize)}];

加个sdwebimage的参数而已  明显不卡顿了 

你可能感兴趣的:(app加载多张高清大图卡顿以及崩溃)