美文网首页Swift学习
swift SDWebImage使用

swift SDWebImage使用

作者: 千年一梦s | 来源:发表于2019-07-03 11:41 被阅读0次

    1.SDWebImage下载图片

    swift中,下载玩图片后,不会将图片缓存到沙盒,需要手动调用SDImageCache.shared.store保存到沙盒

     SDWebImageDownloader.shared.downloadImage(with: url, options: SDWebImageDownloaderOptions.highPriority, context: nil, progress: nil) { (image, data, _, _) in
          SDImageCache.shared.store(image, forKey: url.absoluteString, completion: {
                            
                 print("图片保存成功")
                 print(image as Any)
                 print(data as Any)
           })   
     }
    

    相关文章

      网友评论

        本文标题:swift SDWebImage使用

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