<GCKUIMediaButtonBarProtocol> プロトコル リファレンス
概要
GCKUIMediaButtonBarProtocol デリゲート プロトコル。
- 開始:
- 3.1
<NSObject> を継承します。
GCKUIExpandedMediaControlsViewController と GCKUIMiniMediaControlsViewController によって継承されます。
インスタンス メソッドの概要 | |
(NSUInteger) | - buttonCount |
レシーバーがカスタマイズできるボタンの最大数。その他... | |
(void) | - setButtonType:atIndex: |
位置 index のボタンのボタンタイプを設定します。その他... | |
(GCKUIMediaButtonType) | - buttonTypeAtIndex: |
指定した位置にあるボタンの現在のタイプを返します。その他... | |
(void) | - setCustomButton:atIndex: |
特定のボタン位置に表示する UIButton のインスタンスを設定します。その他... | |
(nullable UIButton *) | - customButtonAtIndex: |
指定された位置のカスタムボタンへの参照を返します。その他... | |
メソッドの詳細
- (NSUInteger) buttonCount |
レシーバーがカスタマイズできるボタンの最大数。
- 戻り値
- ボタンの数。
- (void) setButtonType: | (GCKUIMediaButtonType) | buttonType | |
atIndex: | (NSUInteger) | index | |
位置 index
のボタンのボタンタイプを設定します。
- Parameters
-
buttonType The 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. index The 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
-
index The button's position, where 0 is the left-most position.
- 戻り値
- 選択した位置のボタンのタイプ。
- (void) setCustomButton: | (nullable UIButton *) | customButton | |
atIndex: | (NSUInteger) | index | |
特定のボタン位置に表示する UIButton のインスタンスを設定します。
- Parameters
-
customButton The button instance to be presented in the control bar. index The 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
-
index The button's position, where 0 is the right-most position.
- 戻り値
- 選択した位置のボタンへの参照。その位置にカスタムボタンがない場合、またはその位置が無効な場合は、
nil
。