GCKUIExpandedMediaControlsViewController クラス

GCKUIExpandedMediaControlsViewController クラス リファレンス

概要

拡張コントロールの全画面ビューを実装するビュー コントローラ。

開始:
3.1

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

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

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

プロパティの概要

BOOL hideStreamPositionControlsForLiveContent
 ライブ コンテンツで、配信位置コントロール(配信位置スライダー、配信位置ラベル、配信時間ラベル、配信進行状況ビューなど)を非表示にするかどうかを指定します。その他...
 

メソッドの詳細

- (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

物件の詳細

- (BOOL) hideStreamPositionControlsForLiveContent
readwritenonatomicassign

ライブ コンテンツで、配信位置コントロール(配信位置スライダー、配信位置ラベル、配信時間ラベル、配信進行状況ビューなど)を非表示にするかどうかを指定します。

デフォルト値は NO です。

開始:
4.0