<GCKUIImageCache> プロトコル

<GCKUIImageCache> プロトコル リファレンス

概要

画像の取得とキャッシュ保存の手段を定義するプロトコル。

デフォルトの実装は、ユーザー インターフェースに表示されるメディア アートワークをキャッシュするためにフレームワークによって内部的に使用されます。アプリケーションは、GCKCastContext::imageCache プロパティを設定することでカスタムの実装を提供できます。

シンセ
3.0

<NSObject> を継承します。

インスタンス メソッドの概要

(void) - fetchImageForURL:completion:
 指定された URL にある画像を取得し、画像の縮小バージョンを返します。その他...
 

メソッドの詳細

- (void) fetchImageForURL: (NSURL *)  imageURL
completion: (void(^)(UIImage *__nullable))  completion 

指定された URL にある画像を取得し、画像の縮小バージョンを返します。

これは非同期オペレーションです。

Parameters
imageURLThe URL of the image.
completionA 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.