<GCKUIImageCache> 协议参考
概览
此类继承 <NSObject>。
实例方法摘要 | |
(void) | - fetchImageForURL:completion: |
获取指定网址上的图片,并返回图片的缩放版本。更多... | |
方法详细信息
- (void) fetchImageForURL: | (NSURL *) | imageURL | |
completion: | (void(^)(UIImage *_Nullable)) | completion | |
获取指定网址上的图片,并返回图片的缩放版本。
这是一项异步操作。
- Parameters
-
imageURL The URL of the image. completion A block to invoke once the image has been retrieved. The image should be passed to the block. If there was an error retrieving the image, nil
should be passed instead. The block should only be invoked on the main thread.