<GCKUIImageCache> Protokolü

<GCKUIImageCache> Protokol Referansı

Genel bakış

Resimleri alma ve önbelleğe alma yollarını tanımlayan bir protokol.

Kullanıcı arayüzünde gösterilen medya çizimini önbelleğe almak için çerçeve tarafından dahili bir varsayılan uygulama kullanılır. Uygulama, GCKCastContext::imageCache özelliğini ayarlayarak özel bir uygulama sağlayabilir.

Since
3.0

<NSObject> öğesini devralır.

Örnek Yöntemi Özeti

(void) - fetchImageForURL:completion:
 Resmi, verilen URL'den getirir ve ölçeklendirilmiş bir sürümünü döndürür. Diğer...
 

Yöntem Ayrıntıları

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

Resmi, verilen URL'den getirir ve ölçeklendirilmiş bir sürümünü döndürür.

Bu eşzamansız bir işlemdir.

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.