<GCKUIImageCache> 通訊協定(&T)

<GCKUIImageCache> 通訊協定參考資料

總覽

定義擷取及快取圖片方式的通訊協定。

架構內部會使用預設的實作方式,快取使用者介面中顯示的媒體圖片。應用程式可以透過設定 GCKCastContext::imageCache 屬性來提供自訂實作。

開始時間
3.0

繼承 <NSObject>。

執行個體方法摘要

(void) - fetchImageForURL:completion:
 擷取指定網址的圖片,並傳回調整後的圖片。更多...
 

方法詳細資料

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

擷取指定網址的圖片,並傳回調整後的圖片。

這是非同步作業。

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.