chengyanfang

sdk upgrade

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