iOS 获取网络图片的尺寸

通过SDWebImage方法获取图片

举例如下:

UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, KScreenWidth, KScreenHeight-KNavBarHeight-KTabBarHeight)];
[self.view addSubview: scrollView];

UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, KScreenWidth, 2471/2)];

[imageView sd_setImageWithURL:[NSURL URLWithString:self.model.Screenshot] completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
   CGSize size = image.size;
   
   CGFloat w = size.width;
   
   CGFloat H = size.height;
   
   //这里会运行两次,第一次运行里面的值都为空,第二次运行才会赋值,所以这里做个判断
   if(H > 0){
       CGFloat scale = H/w;
       scrollView.contentSize = CGSizeMake(KScreenWidth, KScreenWidth * scale);
       imageView.frame = CGRectMake(0, 0, KScreenWidth, KScreenWidth * scale);
   }
   
}];
[scrollView addSubview:imageView];

参考网址:
1、https://segmentfault.com/q/1010000008994955
2、https://blog.csdn.net/summer_csdn123/article/details/72722948

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值