GCKImage クラス

GCKImage クラス リファレンス

概要

ウェブサーバーにある画像を表すクラス。

GCKDevice アイコンや GCKMediaMetadata アートワークなどに使用されます。

NSObject、<NSCopying>、<NSSecureCoding> を継承します。

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

(instancetype) - initWithURL:width:height:
 指定された URL とサイズで新しい GCKImage を作成します。その他...
 
(instancetype) - init
 デフォルトのイニシャライザは使用できません。その他...
 

プロパティの概要

NSURL * URL
 画像の URL。その他...
 
NSInteger width
 ピクセル単位の画像の幅です。その他...
 
NSInteger height
 ピクセル単位の画像の高さです。その他...
 

メソッドの詳細

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

指定された URL とサイズで新しい GCKImage を作成します。

指定のイニシャライザ。

Parameters
URLThe URL of the image.
widthThe width of the image, in pixels.
heightThe height of the image, in pixels.
例外
NSInvalidArgumentExceptionURL が nil か空、またはディメンションが無効な場合。
- (instancetype) init

デフォルトのイニシャライザは使用できません。

物件の詳細

- (NSURL*) URL
readnonatomicstrong

画像の URL。

- (NSInteger) width
readnonatomicassign

ピクセル単位の画像の幅です。

- (NSInteger) height
readnonatomicassign

ピクセル単位の画像の高さです。