美文网首页Swift开发资料收集区
Swift开发-Kingfisher框架

Swift开发-Kingfisher框架

作者: 蜗牛锅 | 来源:发表于2017-07-04 23:43 被阅读62次

    IOS开发-使用Kingfisher加载图片

    Kingfisher (中文名:翠鸟) 是一个异步下载和缓存图片的库,SDWebImage的Swift 实现版。https://github.com/onevcat/Kingfisher

    开发环境:

    Xcode 8.0 [swift](http://lib.csdn.net/base/swift) 2.3
    

    Cocoapod:

    source 'https://github.com/CocoaPods/Specs.git'
    platform :ios, '8.0'
    use_frameworks!
    
    pod 'Kingfisher', '~> 2.6'
    

    在XCode 8+使用Swift 2.3 需要注意的配置事项:

    [http://blog.csdn.net/sbt0198/article/details/53391843](http://blog.csdn.net/sbt0198/article/details/53391843)```
    简单的使用方法
    ```imageView.kf_setImageWithURL(NSURL(string: "http://your_image_url.png")!, placeholderImage: nil)```

    相关文章

      网友评论

        本文标题:Swift开发-Kingfisher框架

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