IOS 相册高清图片加载

调用[[asset defaultRepresentation] fullScreenImage] 加载的是高清图片
调用[asset thumbnail] 加载的是缩略图片
调用asset.aspectRatioThumbnail加载的是较高清图片

CGImageRef thumbnailImageRef = [[asset defaultRepresentation] fullScreenImage];
UIImage *thumbnail = [UIImage imageWithCGImage:thumbnailImageRef];

你可能感兴趣的:(IOS 相册高清图片加载)