GCKUIExpandMediaControlsViewController 类

GCKUIExpandMediaControlsViewController 类参考

概览

用于实现展开控件全屏视图的视图控制器。

开始时间
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