与会者列表子项定制
onClickInjectParticipantItemBtnNotify
接口描述
该接口用于定制与会者列表的子项点击事件。
方法定义
1 | - (void)onClickInjectParticipantItemBtnNotify:(HWMUISDKInjectParticipantItemBtnInfoModel *)injectBtnInfo; |
参数描述
| 参数 | 是否必须 | 类型 | 描述 |
|---|---|---|---|
| injectBtnInfo | 是 | HWMUISDKInjectParticipantItemBtnInfoModel | 显示设置窗口信息 |
| 参数 | 类型 | 描述 |
|---|---|---|
| injectBtn | HWMUISDKClickInjectParticipantItemBtn | 按钮类型 |
| participantInfo | HWMUISDKParticipantItemInfoModel | 与会者子项信息 |
| btnId | NSString * | 按钮Id |
| 枚举值 | 描述 |
|---|---|
| HWMUISDKClickInjectParticipantItemBtnCallOtherNum | 呼叫其他号码按钮 |
| HWMUISDKClickInjectParticipantItemBtnParticipantDetail | 查看与会者详情 |
| 参数 | 类型 | 描述 |
|---|---|---|
| number | NSString * | 号码 |
| nickName | NSString * | 与会者昵称 |
| thirdUserId | NSString * | 与会者三方账号,appId登录时使用 |
| accountId | NSString * | 华为云会议账号 |
返回值
无
1 2 3 4 5 | - (void)onClickInjectParticipantItemBtnNotify:(HWMUISDKInjectParticipantItemBtnInfoModel *)injectBtnInfo { // 收到通知后,对上报信息进行处理,示例代码处理方式为打印上报信息 NSString *info = [injectBtnInfo yy_modelDescription]; [HWMConsoleManager shareInstance].console = [NSString stringWithFormat:@"participant: %@", info]; } |