美文网首页
swift获取网络图片代码

swift获取网络图片代码

作者: Mrxiaowang | 来源:发表于2016-07-27 10:33 被阅读180次

    在swift开发中,如果不用SD第三方库,如何获取网络图片呢,其实也很简单,大家看如下的代码,简单易懂

    let url = NSURL(string: collecList.store_big_avatar)!

    let data = NSData(contentsOfURL: url)!

    let image = UIImage(data: data,scale: 1.0)

    cell.imageView2.image = image

    相关文章

      网友评论

          本文标题:swift获取网络图片代码

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