美文网首页
优化图片加载

优化图片加载

作者: NateLam | 来源:发表于2017-02-18 16:47 被阅读9次

写了个类别, 让图片加载完毕不会很突兀地就这么出来

- (void)NA_setWithImageURL:(NSString *)imageURL
           placeholder:(UIImage *)placeholder completion:(void (^)(UIImage * image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL))completion{

[self sd_setImageWithURL:[NSURL URLWithString:imageURL]
        placeholderImage:placeholder
               completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
                   
                   if (image && cacheType == SDImageCacheTypeNone) {
                       
                       CATransition *transition = [CATransition animation];
                       transition.type = kCATransitionFade;
                       transition.duration = .3;
                       transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
                       [self.layer addAnimation:transition forKey:nil];
                       
                   }
                   
                   completion(image, error, cacheType, imageURL);
               }];
}

相关文章

  • iOS性能优化——图片加载和处理

    iOS性能优化——图片加载和处理 iOS性能优化——图片加载和处理

  • iOS 图片渲染

    1.图片的加载 ------> 2.图片的解码 ------>图片的渲染 引用 图片加载优化

  • 前端性能优化

    性能优化的话大致有以下几个部分:加载优化图片优化CSS优化脚本优化渲染优化 加载优化 1.减少http请求 基本原...

  • 雷达优化

    一.雷达现状 二.雷达加载内容 三.雷达优化方向 3.1模块/资源加载优化 3.2图片优化 3.3

  • 优化tableview加载网络图片

    优化tableview加载网络图片 最近在优化公司的TableView的代码,有个界面需要加载一个在线的图片列表,...

  • 优化图片加载

    写了个类别, 让图片加载完毕不会很突兀地就这么出来

  • 图片加载优化

    图片加载优化: 1.二次采样,减少图片对内存的占用 2.缓存,提高图片的访问速度 LRU算法(内存缓存算法) 3....

  • 图片加载优化

    相关文章地址:https://www.jianshu.com/p/e91bce8cac2c ...

  • 图片加载优化

    OOM的out of merory 的原因 1.是一次加载图片过多造成的2.加载大图没有进行压塑 图片的集格式 P...

  • TableView加载图片的优化逻辑

    系列文章: TableView优化之高度缓存功能 TableView优化之加载图片的优化逻辑 TableView优...

网友评论

      本文标题:优化图片加载

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