chengyanfang

sdk upgrade

Showing 42 changed files with 8 additions and 4 deletions
1 Pod::Spec.new do |s| 1 Pod::Spec.new do |s|
2 s.name = "HHVDoctorSDK" 2 s.name = "HHVDoctorSDK"
3 - s.version = "3.0.6.101914" 3 + s.version = "3.0.6.111111"
4 s.summary = "和缓视频医生 SDK" 4 s.summary = "和缓视频医生 SDK"
5 5
6 s.description = <<-DESC 6 s.description = <<-DESC
@@ -3,5 +3,5 @@ @@ -3,5 +3,5 @@
3 <plist version="1.0"> 3 <plist version="1.0">
4 <dict> 4 <dict>
5 <key>HHBundleVersion</key> 5 <key>HHBundleVersion</key>
6 -<string>3.0.6.101914</string></dict> 6 +<string>3.0.6.111111</string></dict>
7 </plist> 7 </plist>
@@ -443,6 +443,8 @@ SWIFT_PROTOCOL("_TtP12hhVDoctorSDK16HHMVideoDelegate_") @@ -443,6 +443,8 @@ SWIFT_PROTOCOL("_TtP12hhVDoctorSDK16HHMVideoDelegate_")
443 - (void)callStateChange:(enum HHMCallingState)state; 443 - (void)callStateChange:(enum HHMCallingState)state;
444 /// 通话已接通 444 /// 通话已接通
445 - (void)callDidEstablish; 445 - (void)callDidEstablish;
  446 +/// 视频页面回调
  447 +- (void)getChatParentView:(UIView * _Nonnull)view;
446 /// 呼叫失败(主叫) 448 /// 呼叫失败(主叫)
447 /// \param error 错误信息 449 /// \param error 错误信息
448 /// 450 ///
@@ -563,6 +563,7 @@ extension HHMSDK { @@ -563,6 +563,7 @@ extension HHMSDK {
563 @objc public protocol HHMVideoDelegate : ObjectiveC.NSObjectProtocol { 563 @objc public protocol HHMVideoDelegate : ObjectiveC.NSObjectProtocol {
564 @objc optional func callStateChange(_ state: hhVDoctorSDK.HHMCallingState) 564 @objc optional func callStateChange(_ state: hhVDoctorSDK.HHMCallingState)
565 @objc optional func callDidEstablish() 565 @objc optional func callDidEstablish()
  566 + @objc optional func getChatParentView(_ view: UIKit.UIView)
566 @objc optional func onFail(_ errorCode: Swift.Int, errrorStr: Swift.String?) 567 @objc optional func onFail(_ errorCode: Swift.Int, errrorStr: Swift.String?)
567 @objc optional func onCancel() 568 @objc optional func onCancel()
568 @objc optional func callDidFinish() 569 @objc optional func callDidFinish()
@@ -563,6 +563,7 @@ extension HHMSDK { @@ -563,6 +563,7 @@ extension HHMSDK {
563 @objc public protocol HHMVideoDelegate : ObjectiveC.NSObjectProtocol { 563 @objc public protocol HHMVideoDelegate : ObjectiveC.NSObjectProtocol {
564 @objc optional func callStateChange(_ state: hhVDoctorSDK.HHMCallingState) 564 @objc optional func callStateChange(_ state: hhVDoctorSDK.HHMCallingState)
565 @objc optional func callDidEstablish() 565 @objc optional func callDidEstablish()
  566 + @objc optional func getChatParentView(_ view: UIKit.UIView)
566 @objc optional func onFail(_ errorCode: Swift.Int, errrorStr: Swift.String?) 567 @objc optional func onFail(_ errorCode: Swift.Int, errrorStr: Swift.String?)
567 @objc optional func onCancel() 568 @objc optional func onCancel()
568 @objc optional func callDidFinish() 569 @objc optional func callDidFinish()
@@ -33,7 +33,7 @@ @@ -33,7 +33,7 @@
33 > 2.0.2 33 > 2.0.2
34 34
35 - 适配 Xcode 10, swift4.2 35 - 适配 Xcode 10, swift4.2
36 - 36 +
37 37
38 ## 1. 集成方式 38 ## 1. 集成方式
39 39
@@ -79,7 +79,7 @@ @@ -79,7 +79,7 @@
79 79
80 ```shell 80 ```shell
81 use_frameworks! 81 use_frameworks!
82 -pod 'HHVDoctorSDK', :git => "http://code.hh-medic.com/hh_public/hhvDoctorSDK.ios.git" 82 +pod 'hhVDoctorSDK', :git => "http://code.hh-medic.com/hh_public/hhvDoctorSDK.ios.git"
83 ``` 83 ```
84 * 安装 84 * 安装
85 85