<GCKUIImageCache> プロトコル リファレンス
概要
画像の取得とキャッシュ保存の手段を定義するプロトコル。
デフォルトの実装は、ユーザー インターフェースに表示されるメディア アートワークをキャッシュするためにフレームワークによって内部的に使用されます。アプリケーションでカスタム実装を提供するには、GCKCastContext::imageCache プロパティを設定します。
- 開始:
- 3.0
<NSObject> を継承します。
インスタンス メソッドの概要 | |
(void) | - fetchImageForURL:completion: |
指定された URL の画像を取得し、画像のスケーリングされたバージョンを返します。その他... | |
メソッドの詳細
- (void) fetchImageForURL: | (NSURL *) | imageURL | |
completion: | (void(^)(UIImage *_Nullable)) | completion | |
指定された URL の画像を取得し、画像のスケーリングされたバージョンを返します。
これは非同期処理です。
- 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.