更新时间:2025-10-13 GMT+08:00
分享

打开虚拟背景设置

openVirtualBackgroundSettingPageWithCallback:

接口描述

该接口用于打开虚拟背景设置。

注意事项

实际业务处理结果在对应的callback中返回。

方法定义

1
- (void)openVirtualBackgroundSettingPageWithCallback:(HWMSDKCompleteHandler)callback;

参数描述

返回值

示例代码
[[HWMBizSdk getBizOpenApi] openVirtualBackgroundSettingPageWithCallback:^(NSError * _Nullable error, id  _Nullable result) {
    if (error) {
        [HWMConsoleManager shareInstance].error = error;
    } else {
        [HWMConsoleManager shareInstance].console = @"open virtual background setting page success";
    }
}];

相关文档