GCKImage 类

GCKImage 类参考文档

概览

表示位于网络服务器上的图片的类。

用于 GCKDevice 图标和 GCKMediaMetadata 图片等。

继承 NSObject、<NSDuplicate> 和 <NSCoding>。

实例方法摘要

(instancetype) - initWithURL:width:height:
 使用指定的网址和维度构造新的 GCKImage更多...
 
(instancetype) - init
 默认初始化程序不可用。更多...
 

属性摘要

NSURL * URL
 图片网址。更多...
 
NSInteger width
 图片宽度,以像素为单位。更多...
 
NSInteger height
 图片高度(以像素为单位)。更多...
 

方法详细信息

- (instancetype) initWithURL: (NSURL *)  URL
width: (NSInteger)  width
height: (NSInteger)  height 

使用指定的网址和维度构造新的 GCKImage

指定的初始化程序。

Parameters
URLThe URL of the image.
widthThe width of the image, in pixels.
heightThe height of the image, in pixels.
例外情况
NSInvalidArgumentException网址为 nil 或为空,或尺寸无效。
- (instancetype) init

默认初始化程序不可用。

属性详情

- (NSURL*) URL
readnonatomicstrong

图片网址。

- (NSInteger) width
readnonatomicassign

图片宽度,以像素为单位。

- (NSInteger) height
readnonatomicassign

图片高度(以像素为单位)。