或者我有一个应用程序始终从解析后端下载大图像。在 android 中,您可以使用它们的 URI 将图像作为流下载,并为我要下载的位图设置特定的尺寸大小。通常这是使用 BitmapFactory 库完成的,并允许我下载按比例缩小的位图,从而使我的应用程序免于长时间加载。这个方法在IOS平台上有没有等价的?这就是我目前正在做的事情,但是当我下载 15 个全尺寸图像时,我得到了大量的加载时间:
//where photoQuery is a Parse.com database query that returns the photo as the first object
PFObject *photoObject = [photoQuery getFirstObject];
PFFile *photoFile = (PFFile *)[photoObject objectForKey:@"fullSizedImage"];
UIImage *fullImage = [UIImage imageWithData:photoFile.getData];
IOS 是否支持类似于 BitmapFactory 或这种常见的 android 设计模式的东西?