码迷,mamicode.com
首页 > 编程语言 > 详细

swift--使用URLSession异步加载图片

时间:2017-10-20 13:30:18      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:view   技术   har   hand   with   image   idt   frame   red   

NSURLConnection,在ios9.0以后被废弃,以后使用URLSession类,如下图

技术分享

具体样例:

 self.imageV.frame = CGRect(x:20,y:70,width:kScreenWidth-40,height:200)
        self.view.addSubview(self.imageV)
        
        //使用URLSession加载图片
        let url = URL(string:"http://pic.jj20.com/up/allimg/911/021616153629/160216153629-1.jpg")
        //创建请求对象
        let request = URLRequest(url:url!)
        
        let session = URLSession.shared
        let dataTask = session.dataTask(with: request,completionHandler: {
            (data, response, error) -> Void in
            if error != nil{
                print(error.debugDescription)
            }else{
                //将图片数据赋予UIImage
                let img = UIImage(data:data!)
                self.imageV.image = img
            }
        }) as URLSessionTask
        
        //启动任务
        dataTask.resume()

效果如下:

技术分享

 

swift--使用URLSession异步加载图片

标签:view   技术   har   hand   with   image   idt   frame   red   

原文地址:http://www.cnblogs.com/hero11223/p/7698779.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!