Downloading normal image Vs retina device image (2x)

前端 未结 2 1209
终归单人心
终归单人心 2021-01-31 09:59

When we need to download an image from some URL and show it on two kinds of devices -- Retina (with 2x image) and regular device -- Should we have two different image URLs to ha

2条回答
  •  生来不讨喜
    2021-01-31 10:23

    CGFloat screenScale = [UIScreen mainScreen].
    UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:myUrl] scale:screenScale];
    

提交回复
热议问题