GCKUIMiniMediaControlsViewController クラス

GCKUIMiniMediaControlsViewController クラス リファレンス

概要

「再生中」のコントロール バーを実装するビュー コントローラ。

デフォルト設定では、現在のメディア アイテムのサムネイル、タイトル、サブタイトル、ストリームの進行状況バー、再生と一時停止の切り替えボタンが表示されます。

委譲プロトコルについては、GCKUIMiniMediaControlsViewControllerDelegate をご覧ください。

開始:
3.0

UIViewController を継承します。<GCKUIMediaButtonBarProtocol> を実装します。

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

(NSUInteger) - buttonCount
 レシーバーがカスタマイズできるボタンの最大数。その他...
 
(void) - setButtonType:atIndex:
 位置 index のボタンのボタンタイプを設定します。その他...
 
(GCKUIMediaButtonType- buttonTypeAtIndex:
 指定した位置にあるボタンの現在のタイプを返します。その他...
 
(void) - setCustomButton:atIndex:
 特定のボタン位置に表示する UIButton のインスタンスを設定します。その他...
 
(nullable UIButton *) - customButtonAtIndex:
 指定された位置のカスタムボタンへの参照を返します。その他...
 

プロパティの概要

id
< GCKUIMiniMediaControlsViewControllerDelegate
delegate
 ビュー コントローラのデゲート。通常はフルスクリーン ビュー コントローラです。必要に応じてこのコントロール バーの表示と非表示を行います。その他...
 
BOOL thumbnailEnabled
 サムネイル画像を表示するかどうかを指定します。その他...
 
BOOL active
 コントロール バーの表示状態を示します。その他...
 
CGFloat minHeight
 このビューを表示する最小(推奨される)高さ。その他...
 

メソッドの詳細

- (NSUInteger) buttonCount

レシーバーがカスタマイズできるボタンの最大数。

戻り値
ボタンの数。
- (void) setButtonType: (GCKUIMediaButtonType buttonType
atIndex: (NSUInteger)  index 

位置 index のボタンのボタンタイプを設定します。

Parameters
buttonTypeThe type of the button. If the type is GCKUIMediaButtonTypeCustom, a UIButton instance should be passed for the same index using setCustomButton:atIndex:. Otherwise a default button is created and presented in that position.
indexThe position in which the button should be presented. 0 is the left-most position. Indices should be smaller than the value returned by buttonCount.
- (GCKUIMediaButtonType) buttonTypeAtIndex: (NSUInteger)  index

指定した位置にあるボタンの現在のタイプを返します。

Parameters
indexThe button's position, where 0 is the left-most position.
戻り値
選択した位置のボタンのタイプ。
- (void) setCustomButton: (nullable UIButton *)  customButton
atIndex: (NSUInteger)  index 

特定のボタン位置に表示する UIButton のインスタンスを設定します。

Parameters
customButtonThe button instance to be presented in the control bar.
indexThe position in which the button should be presented. 0 is the left-most position. Indices should be smaller than the value returned by buttonCount.
- (nullable UIButton *) customButtonAtIndex: (NSUInteger)  index

指定された位置のカスタムボタンへの参照を返します。

Parameters
indexThe button's position, where 0 is the right-most position.
戻り値
選択した位置のボタンへの参照。その位置にカスタムボタンがない場合、またはその位置が無効な場合は、nil

物件の詳細

- (id<GCKUIMiniMediaControlsViewControllerDelegate>) delegate
readwritenonatomicweak

ビュー コントローラのデゲート。通常はフルスクリーン ビュー コントローラです。必要に応じてこのコントロール バーの表示と非表示を行います。

- (BOOL) thumbnailEnabled
readwritenonatomicassign

サムネイル画像を表示するかどうかを指定します。

デフォルトでは、このプロパティは YES に設定されています。

- (BOOL) active
readnonatomicassign

コントロール バーの表示状態を示します。

YES のときは、コントロール バーで制御できるキャスト中のメディアがあり、それを可視化できます。NO の場合、コントロール バーを非表示にします。

- (CGFloat) minHeight
readnonatomicassign

このビューを表示する最小(推奨される)高さ。