iOS 获取网络图片的宽高

有时候需要知道图片的宽高去设置相应的位置,SDWebImage里面的方法就可以直接得到:

[[SDWebImageDownloader sharedDownloader]downloadImageWithURL:[NSURL URLWithString:urlString] options:SDWebImageDownloaderUseNSURLCache progress:^(NSInteger receivedSize, NSInteger expectedSize) {
                         
                     } completed:^(UIImage *image, NSData *data, NSError *error, BOOL finished) {
                        //这边就能拿到图片了

 _width = image.width;
  _height = image.height;
                     }];

    原文作者:何许人_
    原文地址: https://blog.csdn.net/sinat_33505126/article/details/53308173
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞