NERtcCallKit for iOS V3.1.0
载入中...
搜索中...
未找到
NECallConfig.h
浏览该文件的文档.
1// Copyright (c) 2022 NetEase, Inc. All rights reserved.
2// Use of this source code is governed by a MIT license that can be
3// found in the LICENSE file.
4
5#import <Foundation/Foundation.h>
6
7NS_ASSUME_NONNULL_BEGIN
8
9@interface NECallConfig : NSObject
10
12@property(nonatomic, assign) BOOL enableOffline;
13
15@property(nonatomic, assign) BOOL enableSwitchVideoConfirm;
16
18@property(nonatomic, assign) BOOL enableSwitchAudioConfirm;
19
20@end
21
22NS_ASSUME_NONNULL_END
定义 NECallConfig.h:10
BOOL enableOffline
支持离线,默认支持离线
定义 NECallConfig.h:12
BOOL enableSwitchAudioConfirm
开启切换音频通话确认,默认不开启
定义 NECallConfig.h:18
BOOL enableSwitchVideoConfirm
开启切换视频通话确认,默认不开启
定义 NECallConfig.h:15