NERtcCallKit for iOS V3.1.0
载入中...
搜索中...
未找到
NERtcCallKit类 参考

#include <NERtcCallKit.h>

类 NERtcCallKit 继承关系图:

实例方法

(void) - setupAppKey:options:
 初始化,所有功能需要先初始化
 
(void) - setupAppKey:withRtcUid:options:
 初始化,所有功能需要先初始化
 
(void) - setupAppKey:options:withContext:
 初始化,所有功能需要先初始化,支持私有化
 
(void) - login:token:completion:
 登录IM接口,所有功能需要先进行登录后才能使用
 
(void) - updateApnsToken:
 更新APNS deviceToken
 
(void) - updatePushKitToken:
 更新 PushKit Token
 
(void) - logout:
 登出
 
(void) - call:type:completion:
 开始呼叫
 
(void) - call:type:attachment:completion:
 开始呼叫
 
(void) - call:type:attachment:globalExtra:completion:
 开始呼叫
 
(void) - call:type:attachment:globalExtra:withToken:channelName:completion:
 开始呼叫
 
(void) - cancel:
 取消呼叫
 
(void) - accept:
 接受呼叫
 
(void) - acceptWithToken:withCompletion:
 接受呼叫
 
(void) - reject:
 拒绝呼叫
 
(void) - rejectWithReason:withCompletion:
 拒绝呼叫
 
(void) - hangup:
 挂断
 
(void) - setupLocalView:
 设置自己画面
 
(void) - setupRemoteView:forUser:
 设置其他用户画面
 
(int) - enableLocalVideo:
 启动或关闭摄像头
 
(int) - muteLocalVideo:
 开启或关闭视频采集
 
(int) - switchCamera
 切换摄像头
 
(int) - muteLocalAudio:
 麦克风静音
 
(void) - switchCallType:withState:completion:
 在通话过程中切换通话类型。非通话过程中调用无效。仅支持1对1通话。
 
(void) - setLoudSpeakerMode:error:
 是否使用扬声器模式
 
(void) - setAudioMute:forUser:error:
 指定对某个用户静音。
 
(void) - memberOfUid:completion:
 根据uid 获取 accid
 
(void) - memberOfAccid:completion:
 根据uid 获取 accid
 
(void) - addDelegate:
 添加代理 接受回调
 
(void) - removeDelegate:
 移除代理
 
(void) - enableSwitchCallTypeConfirmVideo:audio:
 音视频切换是否需要确认配置
 

类方法

(instancetype) + sharedInstance
 单例
 
(NSString *) + versionCode
 版本号
 

属性

NERtcCallStatus callStatus
 通话状态
 
NSTimeInterval timeOutSeconds
 单位:秒,IM服务器邀请2分钟后无响应为超时,最大值不超过2分钟。
 
NERtcCallKitTokenHandler tokenHandler
 安全模式音视频房间token获取,nil表示非安全模式. Block中一定要调用complete
 
NERtcCallKitPushConfigHandler pushConfigHandler
 推送配置定制化,修改config.pushTitle,config.pushContent来完成。需要的上下文内容在context对象中提供。
 
NERtcCallKitRecordMessageHander recordHandler
 话单自定义回调,如果需要修发送话单内容可以在此回调中修改message相关字段
 
id< NERtcEngineDelegateEx > engineDelegate
 NERtcEngine 的回调接口,由用户提供
 
id< NERtcEngineMediaStatsObserver > observer
 中转NERtcEngine统计回调
 

成员函数文档

◆ accept:

- (void) accept: (nullable void(^)(NSError *_Nullable error)) completion

接受呼叫

参数
completion回调

◆ acceptWithToken:withCompletion:

- (void) acceptWithToken: (nullable NSString *) token
withCompletion: (nullable void(^)(NSError *_Nullable error)) completion 

接受呼叫

参数
token用户token,如果用户直接传入,不需要实现 tokenHandler block回调
completion回调

◆ addDelegate:

- (void) addDelegate: (id< NERtcCallKitDelegate >) delegate

添加代理 接受回调

参数
delegate代理对象

◆ call:type:attachment:completion:

- (void) call: (NSString *) userID
type: (NERtcCallType) type
attachment: (nullable NSString *) attachment
completion: (nullable void(^)(NSError *_Nullable error)) completion 

开始呼叫

参数
userID呼叫的用户ID
type通话类型 => NERtcCallType
attachment附件信息,透传到onInvited
completion回调

◆ call:type:attachment:globalExtra:completion:

- (void) call: (NSString *) userID
type: (NERtcCallType) type
attachment: (nullable NSString *) attachment
globalExtra: (nullable NSString *) extra
completion: (nullable void(^)(NSError *_Nullable error)) completion 

开始呼叫

参数
userID呼叫的用户ID
type通话类型 => NERtcCallType
attachment附件信息,透传到onInvited
extra扩展
completion回调

◆ call:type:attachment:globalExtra:withToken:channelName:completion:

- (void) call: (NSString *) userID
type: (NERtcCallType) type
attachment: (nullable NSString *) attachment
globalExtra: (nullable NSString *) extra
withToken: (nullable NSString *) token
channelName: (nullable NSString *) channelName
completion: (nullable void(^)(NSError *_Nullable error)) completion 

开始呼叫

参数
userID呼叫的用户ID
type通话类型 => NERtcCallType
attachment附件信息,透传到onInvited
extra全局抄送
token安全模式token,如果用户直接传入,不需要实现 tokenHandler block回调
channelName自定义channelName,不传会默认生成
completion回调

◆ call:type:completion:

- (void) call: (NSString *) userID
type: (NERtcCallType) type
completion: (nullable void(^)(NSError *_Nullable error)) completion 

开始呼叫

参数
userID呼叫的用户ID
type通话类型
completion回调

◆ cancel:

- (void) cancel: (nullable void(^)(NSError *_Nullable error)) completion

取消呼叫

参数
completion回调

◆ enableLocalVideo:

- (int) enableLocalVideo: (BOOL) enable

启动或关闭摄像头

参数
enableYES:启动,NO:关闭
返回
操作返回值,成功则返回 0

◆ enableSwitchCallTypeConfirmVideo:audio:

- (void) enableSwitchCallTypeConfirmVideo: (BOOL) video
audio: (BOOL) audio 

音视频切换是否需要确认配置

参数
video切换到视频是否需要确认
audio切换到音频是否需要确认

◆ hangup:

- (void) hangup: (nullable void(^)(NSError *_Nullable error)) completion

挂断

参数
completion回调

◆ login:token:completion:

- (void) login: (NSString *) userID
token: (NSString *) token
completion: (nullable void(^)(NSError *_Nullable error)) completion 

登录IM接口,所有功能需要先进行登录后才能使用

参数
userIDIM用户accid
tokenIM用户token
completion回调

◆ logout:

- (void) logout: (nullable void(^)(NSError *_Nullable error)) completion

登出

◆ memberOfAccid:completion:

- (void) memberOfAccid: (NSString *) accid
completion: (nullable void(^)(NIMSignalingMemberInfo *_Nullable info)) completion 

根据uid 获取 accid

参数
accidIM 用户id @discussion 只有在通话中才能通过accid获取获取uid

◆ memberOfUid:completion:

- (void) memberOfUid: (uint64_t) uid
completion: (nullable void(^)(NIMSignalingMemberInfo *_Nullable info)) completion 

根据uid 获取 accid

参数
uid用户id @discussion 只有在通话中才能通过uid获取accid

◆ muteLocalAudio:

- (int) muteLocalAudio: (BOOL) mute

麦克风静音

参数
muteYES:静音 NO:开启
返回
操作返回值,成功则返回 0

◆ muteLocalVideo:

- (int) muteLocalVideo: (BOOL) muted

开启或关闭视频采集

参数
mutedYES:关闭,NO:开启
返回
操作返回值,成功则返回 0

◆ reject:

- (void) reject: (nullable void(^)(NSError *_Nullable error)) completion

拒绝呼叫

参数
completion回调

◆ rejectWithReason:withCompletion:

- (void) rejectWithReason: (NSInteger) reason
withCompletion: (nullable void(^)(NSError *_Nullable error)) completion 

拒绝呼叫

参数
completion回调
reason挂断原因

◆ removeDelegate:

- (void) removeDelegate: (id< NERtcCallKitDelegate >) delegate

移除代理

参数
delegate代理对象

◆ setAudioMute:forUser:error:

- (void) setAudioMute: (BOOL) mute
forUser: (NSString *) userID
error: (NSError *_Nonnull *_Nonnull) error 

指定对某个用户静音。

参数
mute是否静音
userID用户ID
error错误,成功为nil @discussion 只能不接收指定用户的音频,并不影响房间中其他人接受该用户的音频

◆ setLoudSpeakerMode:error:

- (void) setLoudSpeakerMode: (BOOL) speaker
error: (NSError *_Nonnull *_Nonnull) error 

是否使用扬声器模式

参数
speakerYES:扬声器 NO:听筒
error错误,成功为nil

◆ setupAppKey:options:

- (void) setupAppKey: (NSString *) appKey
options: (nullable NERtcCallOptions *) options 

初始化,所有功能需要先初始化

参数
appKey云信后台注册的appKey

◆ setupAppKey:options:withContext:

- (void) setupAppKey: (NSString *) appKey
options: (nullable NERtcCallOptions *) options
withContext: (nonnull NERtcEngineContext *) context 

初始化,所有功能需要先初始化,支持私有化

参数
appKey云信后台注册的appKey
optionsIM 推送配置,Rtc是否初始化
contextRtc初始化配置,私有化参数配置

◆ setupAppKey:withRtcUid:options:

- (void) setupAppKey: (NSString *) appKey
withRtcUid: (uint64_t) rtcUid
options: (nullable NERtcCallOptions *) options 

初始化,所有功能需要先初始化

参数
appKey云信后台注册的appKey
rtcUid用户自定义rtc uid,如果不需要自定义传入 <= 0 任意整数(或者使用- (void)setupAppKey:(NSString *)appKey options:(nullable NERtcCallOptions *)options 初始化接口),内部自动生成,如果初始化传入会优先使用外部传入

◆ setupLocalView:

- (void) setupLocalView: (nullable UIView *) localView

设置自己画面

参数
localView渲染自己画面的View @discussion localView上不建议有任何subview

◆ setupRemoteView:forUser:

- (void) setupRemoteView: (nullable UIView *) remoteView
forUser: (nullable NSString *) userID 

设置其他用户画面

参数
remoteView渲染其他画面的View
userID其他用户ID @discussion remoteView上不建议有任何subview

◆ sharedInstance

+ (instancetype) sharedInstance

单例

◆ switchCallType:withState:completion:

- (void) switchCallType: (NERtcCallType) type
withState: (NERtcSwitchState) state
completion: (nullable void(^)(NSError *_Nullable error)) completion 

在通话过程中切换通话类型。非通话过程中调用无效。仅支持1对1通话。

参数
type通话类型: 音频/视频
state切换应答类型: 邀请/同意/拒绝
completion回调 @discussion 切换完成后,组件内部会将己端和对端调用-enableLocalVideo:,此时外部不建议再调用-enableLocalVideo:,防止状态错乱.

◆ switchCamera

- (int) switchCamera

切换摄像头

返回
操作返回值,成功则返回 0

◆ updateApnsToken:

- (void) updateApnsToken: (NSData *) deviceToken

更新APNS deviceToken

参数
deviceToken注册获得的deviceToken

◆ updatePushKitToken:

- (void) updatePushKitToken: (NSData *) pushkitToken

更新 PushKit Token

参数
pushkitToken目前仅支持 PKPushTypeVoIP

◆ versionCode

+ (NSString *) versionCode

版本号

属性说明

◆ callStatus

- (NERtcCallStatus) callStatus
readnonatomicassign

通话状态

◆ engineDelegate

- (id<NERtcEngineDelegateEx>) engineDelegate
readwritenonatomicweak

NERtcEngine 的回调接口,由用户提供

◆ observer

- (id<NERtcEngineMediaStatsObserver>) observer
readwritenonatomicweak

中转NERtcEngine统计回调

◆ pushConfigHandler

- (NERtcCallKitPushConfigHandler) pushConfigHandler
readwritenonatomiccopy

推送配置定制化,修改config.pushTitle,config.pushContent来完成。需要的上下文内容在context对象中提供。

◆ recordHandler

- (NERtcCallKitRecordMessageHander) recordHandler
readwritenonatomiccopy

话单自定义回调,如果需要修发送话单内容可以在此回调中修改message相关字段

◆ timeOutSeconds

- (NSTimeInterval) timeOutSeconds
readwritenonatomicassign

单位:秒,IM服务器邀请2分钟后无响应为超时,最大值不超过2分钟。

◆ tokenHandler

- (NERtcCallKitTokenHandler) tokenHandler
readwritenonatomiccopy

安全模式音视频房间token获取,nil表示非安全模式. Block中一定要调用complete


该类的文档由以下文件生成: