类型 | 描述 |
为核心控件设置连线的回调事件。 | |
连线时的布局模式,支持宫格布局、浮窗布局、自定义布局。 | |
连线视图适配器接口,您可以通过实现该接口来向您的每个音视频流视图上添加挂件。 |
类型 | 说明 |
连麦的用户列表发生改变的回调。 | |
收到连麦请求的回调。 | |
收到取消连麦请求的回调。 | |
连麦请求被同意的回调。 | |
连麦请求被拒绝的回调。 | |
连麦请求超时的回调。 | |
主播断开和此观众连麦的回调。 | |
观众主动断开连线的回调。 | |
跨房连线的房间列表发生改变回调。 | |
收到跨房连线请求的回调。 | |
收到取消跨房连线请求的回调。 | |
收到同意跨房连线的回调 | |
收到拒绝跨房连线的回调 | |
收到跨房连线超时的回调。 | |
收到断开跨房连线的回调。 | |
收到房间销毁的回调。 |
类型 | 描述 |
gridLayout | 宫格布局。 |
floatLayout | 浮窗布局。 |
freeLayout | 自定义布局。 |
API | 说明 |
创建连麦观众视图时回调,您通过该 API 创建的 View 会被显示到连麦观众的视图上。 | |
更新连麦观众视图时回调。 | |
创建连线主播视图时回调,您通过该 API 创建的 View 会被显示到连线主播的视图上。 | |
更新连线主播视图时回调。 |
func onConnectedUsersUpdated(userList: [TUIUserInfo], joinList: [TUIUserInfo], leaveList: [TUIUserInfo])
参数 | 类型 | 描述 |
userList | 连麦的用户列表 | |
joinList | 新加入的连麦用户 | |
leaveList | 离开的连麦用户 |
func onUserConnectionRequest(inviterUser: TUIUserInfo)
参数 | 类型 | 描述 |
inviterUser | 申请连麦的用户信息 |
func onUserConnectionCancelled(inviterUser: TUIUserInfo)
参数 | 类型 | 描述 |
inviterUser | 取消连麦的用户信息 |
func onUserConnectionAccepted(userInfo: TUIUserInfo)
参数 | 类型 | 描述 |
userInfo | 同意连麦的用户信息 |
func onUserConnectionRejected(userInfo: TUIUserInfo)
参数 | 类型 | 描述 |
userInfo | 拒绝连麦的用户信息 |
func onUserConnectionTimeout(userInfo: TUIUserInfo)
参数 | 类型 | 描述 |
userInfo | 连麦请求超时的用户信息 |
func onUserConnectionTerminated()
func onUserConnectionExited(userInfo: TUIUserInfo)
参数 | 类型 | 描述 |
userInfo | 断开连麦的用户信息 |
func onConnectedRoomsUpdated(hostUserList: [TUIConnectionUser])
参数 | 类型 | 描述 |
hostUserList | 连线房间的房主列表 |
func onCrossRoomConnectionRequest(hostUser: TUIConnectionUser)
参数 | 类型 | 描述 |
hostUser | 申请连线的直播间房主信息 |
func onCrossRoomConnectionCancelled(hostUser: TUIConnectionUser)
参数 | 类型 | 描述 |
hostUser | 取消申请连线的直播间房主信息 |
func onCrossRoomConnectionAccepted(hostUser: TUIConnectionUser)
参数 | 类型 | 描述 |
hostUser | 同意连线的直播间房主信息 |
func onCrossRoomConnectionRejected(hostUser: TUIConnectionUser)
参数 | 类型 | 描述 |
hostUser | 拒绝连线的直播间房主信息 |
func onCrossRoomConnectionTimeout(inviter: TUIConnectionUser, invitee: TUIConnectionUser)
参数 | 类型 | 描述 |
inviter | 申请连线的直播间房主信息 | |
invitee | 被邀请连线的直播间房主信息 |
func onCrossRoomConnectionExited(hostUser: TUIConnectionUser)
参数 | 类型 | 描述 |
hostUser | 退出连线的直播间信息 |
func onRoomDismissed(roomId: String)
参数 | 类型 | 描述 |
roomId | String | 房间 ID |
func createCoGuestView(userInfo: TUIUserInfo) -> UIView?
参数 | 类型 | 描述 |
userInfo | 连麦用户的用户信息 |
func updateCoGuestView(userInfo: TUIUserInfo, coGuestView: UIView)
参数 | 类型 | 描述 |
userInfo | 连麦用户的用户信息 | |
coGuestView | UIView |
func createCoHostView(connectionUser: TUIConnectionUser) -> UIView?
参数 | 类型 | 描述 |
connectionUser | 连线主播的用户信息 |
func updateCoHostView(connectionUser: TUIConnectionUser, coHostView: UIView)
参数 | 类型 | 描述 |
connectionUser | 连线主播的信息 | |
coHostView | UIView |
本页内容是否解决了您的问题?