wangguolei

sdk upgrade

Showing 99 changed files with 19 additions and 19 deletions
Pod::Spec.new do |s|
s.name = "HHVDoctorSDK"
s.version = "3.1.4.121413"
s.version = "3.1.4.121418"
s.summary = "和缓视频医生 SDK"
s.description = <<-DESC
... ...
... ... @@ -307,7 +307,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong, getter=defau
/// callDelegate: 呼叫状态回调
/// </li>
/// </ul>
- (void)startCall:(enum HHCallType)type callDelegate:(id <HHCallDelegate> _Nullable)callDelegate SWIFT_DEPRECATED_MSG("Use call(userToken : String) instead.");
- (void)startCall:(enum HHCallType)type scene:(NSString * _Nullable)scene callDelegate:(id <HHCallDelegate> _Nullable)callDelegate SWIFT_DEPRECATED_MSG("Use call(userToken : String) instead.");
/// 指定人呼叫
/// <ul>
/// <li>
... ... @@ -320,7 +320,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong, getter=defau
/// callDelegate: 呼叫状态回调
/// </li>
/// </ul>
- (void)startCall:(NSInteger)uuid type:(enum HHCallType)type callDelegate:(id <HHCallDelegate> _Nullable)callDelegate SWIFT_DEPRECATED_MSG("Use call(userToken : String) instead.");
- (void)startCall:(NSInteger)uuid scene:(NSString * _Nullable)scene type:(enum HHCallType)type callDelegate:(id <HHCallDelegate> _Nullable)callDelegate SWIFT_DEPRECATED_MSG("Use call(userToken : String) instead.");
/// 指定人呼叫
/// <ul>
/// <li>
... ... @@ -330,7 +330,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong, getter=defau
/// userToken: 呼叫人userToken
/// </li>
/// </ul>
- (void)callWithUserToken:(NSString * _Nonnull)userToken;
- (void)callWithUserToken:(NSString * _Nonnull)userToken scene:(NSString * _Nullable)scene;
@end
... ...
... ... @@ -39,10 +39,10 @@ extension HHMSDK {
}
extension HHMSDK {
@available(*, deprecated, message: "Use call(userToken : String) instead.")
@objc dynamic public func startCall(_ type: HHSDKVideo.HHCallType = .adult, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
@objc dynamic public func startCall(_ type: HHSDKVideo.HHCallType = .adult, scene: Swift.String? = nil, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
@available(*, deprecated, message: "Use call(userToken : String) instead.")
@objc dynamic public func startCall(_ uuid: Swift.Int, type: HHSDKVideo.HHCallType = .adult, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
@objc dynamic public func call(userToken: Swift.String)
@objc dynamic public func startCall(_ uuid: Swift.Int, scene: Swift.String? = nil, type: HHSDKVideo.HHCallType = .adult, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
@objc dynamic public func call(userToken: Swift.String, scene: Swift.String? = nil)
}
extension HHMSDK {
@objc dynamic public func startTeamCall(_ type: HHSDKVideo.HHCallType, callee: HHSDKVideo.HHCallerInfo, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
... ...
... ... @@ -39,10 +39,10 @@ extension HHMSDK {
}
extension HHMSDK {
@available(*, deprecated, message: "Use call(userToken : String) instead.")
@objc dynamic public func startCall(_ type: HHSDKVideo.HHCallType = .adult, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
@objc dynamic public func startCall(_ type: HHSDKVideo.HHCallType = .adult, scene: Swift.String? = nil, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
@available(*, deprecated, message: "Use call(userToken : String) instead.")
@objc dynamic public func startCall(_ uuid: Swift.Int, type: HHSDKVideo.HHCallType = .adult, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
@objc dynamic public func call(userToken: Swift.String)
@objc dynamic public func startCall(_ uuid: Swift.Int, scene: Swift.String? = nil, type: HHSDKVideo.HHCallType = .adult, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
@objc dynamic public func call(userToken: Swift.String, scene: Swift.String? = nil)
}
extension HHMSDK {
@objc dynamic public func startTeamCall(_ type: HHSDKVideo.HHCallType, callee: HHSDKVideo.HHCallerInfo, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
... ...
... ... @@ -730,7 +730,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong, getter=defau
/// userToken: 呼叫人userToken
/// </li>
/// </ul>
- (void)call:(NSString * _Nonnull)memberToken;
- (void)call:(NSString * _Nonnull)memberToken scene:(NSString * _Nullable)scene;
@end
... ... @@ -757,7 +757,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong, getter=defau
/// callDelegate: 呼叫状态回调
/// </li>
/// </ul>
- (void)startCall:(enum HHCallType)type callDelegate:(id <HHCallDelegate> _Nullable)callDelegate;
- (void)startCall:(enum HHCallType)type scene:(NSString * _Nullable)scene callDelegate:(id <HHCallDelegate> _Nullable)callDelegate;
- (void)startNewCall:(NSInteger)uuid type:(enum HHCallType)type callDelegate:(id <HHCallDelegate> _Nullable)callDelegate;
/// 指定人呼叫
/// <ul>
... ... @@ -771,7 +771,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong, getter=defau
/// callDelegate: 呼叫状态回调
/// </li>
/// </ul>
- (void)startCall:(NSInteger)uuid type:(enum HHCallType)type callDelegate:(id <HHCallDelegate> _Nullable)callDelegate;
- (void)startCall:(NSInteger)uuid scene:(NSString * _Nullable)scene type:(enum HHCallType)type callDelegate:(id <HHCallDelegate> _Nullable)callDelegate;
@end
... ...
... ... @@ -1445,15 +1445,15 @@ public struct hhToastStyle {
@objc deinit
}
extension HHVideoSDK {
@objc dynamic public func startCall(_ type: HHSDKVideo.HHCallType = .adult, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
@objc dynamic public func startCall(_ type: HHSDKVideo.HHCallType = .adult, scene: Swift.String? = nil, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
@objc dynamic public func startNewCall(_ uuid: Swift.Int, type: HHSDKVideo.HHCallType = .adult, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
@objc dynamic public func startCall(_ uuid: Swift.Int, type: HHSDKVideo.HHCallType = .adult, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
@objc dynamic public func startCall(_ uuid: Swift.Int, scene: Swift.String? = nil, type: HHSDKVideo.HHCallType = .adult, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
}
extension HHVideoSDK {
@objc dynamic public func startTeamCall(_ type: HHSDKVideo.HHCallType, callee: HHSDKVideo.HHCallerInfo, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
}
extension HHVideoSDK {
@objc dynamic public func call(_ memberToken: Swift.String)
@objc dynamic public func call(_ memberToken: Swift.String, scene: Swift.String? = nil)
}
extension HHVideoSDK {
@objc dynamic public func startMemberCall(needSelectMember: Swift.Bool = true)
... ...
... ... @@ -1445,15 +1445,15 @@ public struct hhToastStyle {
@objc deinit
}
extension HHVideoSDK {
@objc dynamic public func startCall(_ type: HHSDKVideo.HHCallType = .adult, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
@objc dynamic public func startCall(_ type: HHSDKVideo.HHCallType = .adult, scene: Swift.String? = nil, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
@objc dynamic public func startNewCall(_ uuid: Swift.Int, type: HHSDKVideo.HHCallType = .adult, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
@objc dynamic public func startCall(_ uuid: Swift.Int, type: HHSDKVideo.HHCallType = .adult, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
@objc dynamic public func startCall(_ uuid: Swift.Int, scene: Swift.String? = nil, type: HHSDKVideo.HHCallType = .adult, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
}
extension HHVideoSDK {
@objc dynamic public func startTeamCall(_ type: HHSDKVideo.HHCallType, callee: HHSDKVideo.HHCallerInfo, callDelegate: HHSDKVideo.HHCallDelegate? = nil)
}
extension HHVideoSDK {
@objc dynamic public func call(_ memberToken: Swift.String)
@objc dynamic public func call(_ memberToken: Swift.String, scene: Swift.String? = nil)
}
extension HHVideoSDK {
@objc dynamic public func startMemberCall(needSelectMember: Swift.Bool = true)
... ...