API
ZegoUIKitPrebuiltLiveAudioRoomVC
init
在进入语聊房之前,您必须调用此接口来初始化语聊房。
函数原型如下:
Untitled
/// 聊天室初始化
/// - Parameters:
/// - appID: 您的 appID
/// - appSign: 您的 appSign
/// - userID: 用户唯一标识
/// - userName: 用户名
/// - roomID: 聊天室 ID
/// - config: 个性化配置
public init(_ appID: UInt32,
appSign: String,
userID: String,
userName: String,
roomID: String,
config: ZegoUIKitPrebuiltLiveAudioRoomConfig)
1
addButtonToMenuBar
您可以通过调用此接口,向底部栏添加自定义按钮,您可以通过设置 role
参数,来控制按钮显示的身份场景。
函数原型如下:
Untitled
public func addButtonToMenuBar(_ button: UIButton, role: ZegoLiveAudioRoomRole)
1
clearBottomBarExtendButtons
您可以通过调用此接口,清空由 addButtonToBottomMenuBar
添加的按钮
函数原型如下:
Untitled
public func clearBottomBarExtendButtons(_ role: ZegoLiveAudioRoomRole)
1
setBackgroundView
您可以通过调用此接口,自定义直播页面的背景视图
函数原型如下:
Untitled
public func setBackgroundView(_ view: UIView)
1