NERtcCallKit for iOS V3.1.0
载入中...
搜索中...
未找到
NERtcCallKitContext.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>
8
9NS_ASSUME_NONNULL_BEGIN
10
11@interface NERtcCallKitContext : NSObject
12
14@property(nonatomic, copy) NSString *appKey;
15
17@property(nonatomic, assign) BOOL isGroupCall;
18
20@property(nonatomic, copy, nullable) NSString *groupID;
21
23@property(nonatomic, copy) NSString *myAccid;
24
26@property(nonatomic, assign) uint64_t myUid;
27
29@property(nonatomic, copy) NSString *myDisplayName;
30
32@property(nonatomic, copy, nullable) NSString *remoteAccid;
33
35@property(nonatomic, copy) NSString *cname;
36
38@property(nonatomic, assign) NERtcCallType callType;
39
40@end
41
42NS_ASSUME_NONNULL_END
定义 NERtcCallKitContext.h:12
NERtcCallType callType
呼叫类型。视频/音频
定义 NERtcCallKitContext.h:38
uint64_t myUid
当前用户音视频房间uid
定义 NERtcCallKitContext.h:26
NSString * appKey
appKey
定义 NERtcCallKitContext.h:14
NSString * groupID
当前群组呼叫的groupID
定义 NERtcCallKitContext.h:20
BOOL isGroupCall
是否是群组呼叫
定义 NERtcCallKitContext.h:17
NSString * remoteAccid
1to1专用字段,对方accid. 群组呼叫下无效。
定义 NERtcCallKitContext.h:32
NSString * cname
音视频房间名
定义 NERtcCallKitContext.h:35
NSString * myAccid
当前用户IM accid
定义 NERtcCallKitContext.h:23
NSString * myDisplayName
当前用户的显示名称
定义 NERtcCallKitContext.h:29