chengyanfang

sdk upgrade

Showing 95 changed files with 300 additions and 2 deletions
@@ -215,6 +215,22 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); @@ -215,6 +215,22 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
215 215
216 @class NSCoder; 216 @class NSCoder;
217 217
  218 +SWIFT_CLASS("_TtC10HHSDKVideo13CommentBaseVC")
  219 +@interface CommentBaseVC : UIViewController
  220 +- (void)viewWillAppear:(BOOL)animated;
  221 +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
  222 +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
  223 +@end
  224 +
  225 +
  226 +SWIFT_CLASS("_TtC10HHSDKVideo9CommentVC")
  227 +@interface CommentVC : CommentBaseVC
  228 +- (void)viewDidLoad;
  229 +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
  230 +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
  231 +@end
  232 +
  233 +
218 SWIFT_CLASS("_TtC10HHSDKVideo26EKAccessoryNoteMessageView") 234 SWIFT_CLASS("_TtC10HHSDKVideo26EKAccessoryNoteMessageView")
219 @interface EKAccessoryNoteMessageView : UIView 235 @interface EKAccessoryNoteMessageView : UIView
220 - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; 236 - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
@@ -600,7 +616,6 @@ SWIFT_CLASS("_TtC10HHSDKVideo12HHPermission") @@ -600,7 +616,6 @@ SWIFT_CLASS("_TtC10HHSDKVideo12HHPermission")
600 @property (nonatomic, readonly, copy) NSString * _Nonnull debugDescription; 616 @property (nonatomic, readonly, copy) NSString * _Nonnull debugDescription;
601 @end 617 @end
602 618
603 -@class UIViewController;  
604 619
605 SWIFT_CLASS("_TtC10HHSDKVideo23HHPhotoPickerController") 620 SWIFT_CLASS("_TtC10HHSDKVideo23HHPhotoPickerController")
606 @interface HHPhotoPickerController : UINavigationController 621 @interface HHPhotoPickerController : UINavigationController
@@ -721,6 +736,8 @@ typedef SWIFT_ENUM(NSInteger, PermissionType, open) { @@ -721,6 +736,8 @@ typedef SWIFT_ENUM(NSInteger, PermissionType, open) {
721 736
722 737
723 738
  739 +
  740 +
724 @class UITapGestureRecognizer; 741 @class UITapGestureRecognizer;
725 @class NSTimer; 742 @class NSTimer;
726 743
@@ -967,6 +984,22 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); @@ -967,6 +984,22 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
967 984
968 @class NSCoder; 985 @class NSCoder;
969 986
  987 +SWIFT_CLASS("_TtC10HHSDKVideo13CommentBaseVC")
  988 +@interface CommentBaseVC : UIViewController
  989 +- (void)viewWillAppear:(BOOL)animated;
  990 +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
  991 +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
  992 +@end
  993 +
  994 +
  995 +SWIFT_CLASS("_TtC10HHSDKVideo9CommentVC")
  996 +@interface CommentVC : CommentBaseVC
  997 +- (void)viewDidLoad;
  998 +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
  999 +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
  1000 +@end
  1001 +
  1002 +
970 SWIFT_CLASS("_TtC10HHSDKVideo26EKAccessoryNoteMessageView") 1003 SWIFT_CLASS("_TtC10HHSDKVideo26EKAccessoryNoteMessageView")
971 @interface EKAccessoryNoteMessageView : UIView 1004 @interface EKAccessoryNoteMessageView : UIView
972 - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; 1005 - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
@@ -1352,7 +1385,6 @@ SWIFT_CLASS("_TtC10HHSDKVideo12HHPermission") @@ -1352,7 +1385,6 @@ SWIFT_CLASS("_TtC10HHSDKVideo12HHPermission")
1352 @property (nonatomic, readonly, copy) NSString * _Nonnull debugDescription; 1385 @property (nonatomic, readonly, copy) NSString * _Nonnull debugDescription;
1353 @end 1386 @end
1354 1387
1355 -@class UIViewController;  
1356 1388
1357 SWIFT_CLASS("_TtC10HHSDKVideo23HHPhotoPickerController") 1389 SWIFT_CLASS("_TtC10HHSDKVideo23HHPhotoPickerController")
1358 @interface HHPhotoPickerController : UINavigationController 1390 @interface HHPhotoPickerController : UINavigationController
@@ -1473,6 +1505,8 @@ typedef SWIFT_ENUM(NSInteger, PermissionType, open) { @@ -1473,6 +1505,8 @@ typedef SWIFT_ENUM(NSInteger, PermissionType, open) {
1473 1505
1474 1506
1475 1507
  1508 +
  1509 +
1476 @class UITapGestureRecognizer; 1510 @class UITapGestureRecognizer;
1477 @class NSTimer; 1511 @class NSTimer;
1478 1512
@@ -52,6 +52,12 @@ public var HMDefaultOpt: HHSDKVideo.OptionProtocal { @@ -52,6 +52,12 @@ public var HMDefaultOpt: HHSDKVideo.OptionProtocal {
52 @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) 52 @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
53 @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder) 53 @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
54 } 54 }
  55 +@objc public class CommentBaseVC : UIKit.UIViewController {
  56 + @objc override dynamic public func viewWillAppear(_ animated: Swift.Bool)
  57 + @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
  58 + @objc required dynamic public init?(coder: Foundation.NSCoder)
  59 + @objc deinit
  60 +}
55 public struct EKPopUpMessage { 61 public struct EKPopUpMessage {
56 public typealias EKPopUpMessageAction = () -> () 62 public typealias EKPopUpMessageAction = () -> ()
57 public struct ThemeImage { 63 public struct ThemeImage {
@@ -70,6 +76,8 @@ public struct EKPopUpMessage { @@ -70,6 +76,8 @@ public struct EKPopUpMessage {
70 public var action: HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction 76 public var action: HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction
71 public init(themeImage: HHSDKVideo.EKPopUpMessage.ThemeImage? = nil, title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent, button: HHSDKVideo.EKProperty.ButtonContent, action: @escaping HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction) 77 public init(themeImage: HHSDKVideo.EKPopUpMessage.ThemeImage? = nil, title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent, button: HHSDKVideo.EKProperty.ButtonContent, action: @escaping HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction)
72 } 78 }
  79 +public struct CommentApi {
  80 +}
73 public typealias HHFetchBlock = (UIKit.UIImage?, [Swift.AnyHashable : Any]?) -> Swift.Void 81 public typealias HHFetchBlock = (UIKit.UIImage?, [Swift.AnyHashable : Any]?) -> Swift.Void
74 public typealias onCanceled = (() -> Swift.Void) 82 public typealias onCanceled = (() -> Swift.Void)
75 public typealias onCapFinished = (([HHSDKVideo.SDKCameraImageModel]?) -> Swift.Void) 83 public typealias onCapFinished = (([HHSDKVideo.SDKCameraImageModel]?) -> Swift.Void)
@@ -1058,6 +1066,13 @@ extension HHMSDK { @@ -1058,6 +1066,13 @@ extension HHMSDK {
1058 extension HHMSDK { 1066 extension HHMSDK {
1059 public func sendBaseLog(ex: [Swift.String : Swift.String]? = nil, action: [Swift.String : Swift.String]? = nil) 1067 public func sendBaseLog(ex: [Swift.String : Swift.String]? = nil, action: [Swift.String : Swift.String]? = nil)
1060 } 1068 }
  1069 +@objc public class CommentVC : HHSDKVideo.CommentBaseVC {
  1070 + @objc override dynamic public func viewDidLoad()
  1071 + public static func show(_ orderId: Swift.String, docId: Swift.String, uuid: Swift.Int?, type: HHSDKVideo.HHCallType?, _ model: HHSDKVideo.HHGetQuesetionModel?)
  1072 + @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
  1073 + @objc required dynamic public init?(coder: Foundation.NSCoder)
  1074 + @objc deinit
  1075 +}
1061 @objc final public class EKRatingSymbolsContainerView : UIKit.UIView { 1076 @objc final public class EKRatingSymbolsContainerView : UIKit.UIView {
1062 final public func setup(with message: HHSDKVideo.EKRatingMessage, externalSelection: @escaping HHSDKVideo.EKRatingMessage.Selection) 1077 final public func setup(with message: HHSDKVideo.EKRatingMessage, externalSelection: @escaping HHSDKVideo.EKRatingMessage.Selection)
1063 @objc override dynamic public init(frame: CoreGraphics.CGRect) 1078 @objc override dynamic public init(frame: CoreGraphics.CGRect)
@@ -52,6 +52,12 @@ public var HMDefaultOpt: HHSDKVideo.OptionProtocal { @@ -52,6 +52,12 @@ public var HMDefaultOpt: HHSDKVideo.OptionProtocal {
52 @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) 52 @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
53 @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder) 53 @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
54 } 54 }
  55 +@objc public class CommentBaseVC : UIKit.UIViewController {
  56 + @objc override dynamic public func viewWillAppear(_ animated: Swift.Bool)
  57 + @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
  58 + @objc required dynamic public init?(coder: Foundation.NSCoder)
  59 + @objc deinit
  60 +}
55 public struct EKPopUpMessage { 61 public struct EKPopUpMessage {
56 public typealias EKPopUpMessageAction = () -> () 62 public typealias EKPopUpMessageAction = () -> ()
57 public struct ThemeImage { 63 public struct ThemeImage {
@@ -70,6 +76,8 @@ public struct EKPopUpMessage { @@ -70,6 +76,8 @@ public struct EKPopUpMessage {
70 public var action: HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction 76 public var action: HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction
71 public init(themeImage: HHSDKVideo.EKPopUpMessage.ThemeImage? = nil, title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent, button: HHSDKVideo.EKProperty.ButtonContent, action: @escaping HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction) 77 public init(themeImage: HHSDKVideo.EKPopUpMessage.ThemeImage? = nil, title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent, button: HHSDKVideo.EKProperty.ButtonContent, action: @escaping HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction)
72 } 78 }
  79 +public struct CommentApi {
  80 +}
73 public typealias HHFetchBlock = (UIKit.UIImage?, [Swift.AnyHashable : Any]?) -> Swift.Void 81 public typealias HHFetchBlock = (UIKit.UIImage?, [Swift.AnyHashable : Any]?) -> Swift.Void
74 public typealias onCanceled = (() -> Swift.Void) 82 public typealias onCanceled = (() -> Swift.Void)
75 public typealias onCapFinished = (([HHSDKVideo.SDKCameraImageModel]?) -> Swift.Void) 83 public typealias onCapFinished = (([HHSDKVideo.SDKCameraImageModel]?) -> Swift.Void)
@@ -1058,6 +1066,13 @@ extension HHMSDK { @@ -1058,6 +1066,13 @@ extension HHMSDK {
1058 extension HHMSDK { 1066 extension HHMSDK {
1059 public func sendBaseLog(ex: [Swift.String : Swift.String]? = nil, action: [Swift.String : Swift.String]? = nil) 1067 public func sendBaseLog(ex: [Swift.String : Swift.String]? = nil, action: [Swift.String : Swift.String]? = nil)
1060 } 1068 }
  1069 +@objc public class CommentVC : HHSDKVideo.CommentBaseVC {
  1070 + @objc override dynamic public func viewDidLoad()
  1071 + public static func show(_ orderId: Swift.String, docId: Swift.String, uuid: Swift.Int?, type: HHSDKVideo.HHCallType?, _ model: HHSDKVideo.HHGetQuesetionModel?)
  1072 + @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
  1073 + @objc required dynamic public init?(coder: Foundation.NSCoder)
  1074 + @objc deinit
  1075 +}
1061 @objc final public class EKRatingSymbolsContainerView : UIKit.UIView { 1076 @objc final public class EKRatingSymbolsContainerView : UIKit.UIView {
1062 final public func setup(with message: HHSDKVideo.EKRatingMessage, externalSelection: @escaping HHSDKVideo.EKRatingMessage.Selection) 1077 final public func setup(with message: HHSDKVideo.EKRatingMessage, externalSelection: @escaping HHSDKVideo.EKRatingMessage.Selection)
1063 @objc override dynamic public init(frame: CoreGraphics.CGRect) 1078 @objc override dynamic public init(frame: CoreGraphics.CGRect)
@@ -52,6 +52,12 @@ public var HMDefaultOpt: HHSDKVideo.OptionProtocal { @@ -52,6 +52,12 @@ public var HMDefaultOpt: HHSDKVideo.OptionProtocal {
52 @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) 52 @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
53 @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder) 53 @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
54 } 54 }
  55 +@objc public class CommentBaseVC : UIKit.UIViewController {
  56 + @objc override dynamic public func viewWillAppear(_ animated: Swift.Bool)
  57 + @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
  58 + @objc required dynamic public init?(coder: Foundation.NSCoder)
  59 + @objc deinit
  60 +}
55 public struct EKPopUpMessage { 61 public struct EKPopUpMessage {
56 public typealias EKPopUpMessageAction = () -> () 62 public typealias EKPopUpMessageAction = () -> ()
57 public struct ThemeImage { 63 public struct ThemeImage {
@@ -70,6 +76,8 @@ public struct EKPopUpMessage { @@ -70,6 +76,8 @@ public struct EKPopUpMessage {
70 public var action: HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction 76 public var action: HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction
71 public init(themeImage: HHSDKVideo.EKPopUpMessage.ThemeImage? = nil, title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent, button: HHSDKVideo.EKProperty.ButtonContent, action: @escaping HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction) 77 public init(themeImage: HHSDKVideo.EKPopUpMessage.ThemeImage? = nil, title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent, button: HHSDKVideo.EKProperty.ButtonContent, action: @escaping HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction)
72 } 78 }
  79 +public struct CommentApi {
  80 +}
73 public typealias HHFetchBlock = (UIKit.UIImage?, [Swift.AnyHashable : Any]?) -> Swift.Void 81 public typealias HHFetchBlock = (UIKit.UIImage?, [Swift.AnyHashable : Any]?) -> Swift.Void
74 public typealias onCanceled = (() -> Swift.Void) 82 public typealias onCanceled = (() -> Swift.Void)
75 public typealias onCapFinished = (([HHSDKVideo.SDKCameraImageModel]?) -> Swift.Void) 83 public typealias onCapFinished = (([HHSDKVideo.SDKCameraImageModel]?) -> Swift.Void)
@@ -1058,6 +1066,13 @@ extension HHMSDK { @@ -1058,6 +1066,13 @@ extension HHMSDK {
1058 extension HHMSDK { 1066 extension HHMSDK {
1059 public func sendBaseLog(ex: [Swift.String : Swift.String]? = nil, action: [Swift.String : Swift.String]? = nil) 1067 public func sendBaseLog(ex: [Swift.String : Swift.String]? = nil, action: [Swift.String : Swift.String]? = nil)
1060 } 1068 }
  1069 +@objc public class CommentVC : HHSDKVideo.CommentBaseVC {
  1070 + @objc override dynamic public func viewDidLoad()
  1071 + public static func show(_ orderId: Swift.String, docId: Swift.String, uuid: Swift.Int?, type: HHSDKVideo.HHCallType?, _ model: HHSDKVideo.HHGetQuesetionModel?)
  1072 + @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
  1073 + @objc required dynamic public init?(coder: Foundation.NSCoder)
  1074 + @objc deinit
  1075 +}
1061 @objc final public class EKRatingSymbolsContainerView : UIKit.UIView { 1076 @objc final public class EKRatingSymbolsContainerView : UIKit.UIView {
1062 final public func setup(with message: HHSDKVideo.EKRatingMessage, externalSelection: @escaping HHSDKVideo.EKRatingMessage.Selection) 1077 final public func setup(with message: HHSDKVideo.EKRatingMessage, externalSelection: @escaping HHSDKVideo.EKRatingMessage.Selection)
1063 @objc override dynamic public init(frame: CoreGraphics.CGRect) 1078 @objc override dynamic public init(frame: CoreGraphics.CGRect)
@@ -52,6 +52,12 @@ public var HMDefaultOpt: HHSDKVideo.OptionProtocal { @@ -52,6 +52,12 @@ public var HMDefaultOpt: HHSDKVideo.OptionProtocal {
52 @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) 52 @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
53 @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder) 53 @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
54 } 54 }
  55 +@objc public class CommentBaseVC : UIKit.UIViewController {
  56 + @objc override dynamic public func viewWillAppear(_ animated: Swift.Bool)
  57 + @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
  58 + @objc required dynamic public init?(coder: Foundation.NSCoder)
  59 + @objc deinit
  60 +}
55 public struct EKPopUpMessage { 61 public struct EKPopUpMessage {
56 public typealias EKPopUpMessageAction = () -> () 62 public typealias EKPopUpMessageAction = () -> ()
57 public struct ThemeImage { 63 public struct ThemeImage {
@@ -70,6 +76,8 @@ public struct EKPopUpMessage { @@ -70,6 +76,8 @@ public struct EKPopUpMessage {
70 public var action: HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction 76 public var action: HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction
71 public init(themeImage: HHSDKVideo.EKPopUpMessage.ThemeImage? = nil, title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent, button: HHSDKVideo.EKProperty.ButtonContent, action: @escaping HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction) 77 public init(themeImage: HHSDKVideo.EKPopUpMessage.ThemeImage? = nil, title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent, button: HHSDKVideo.EKProperty.ButtonContent, action: @escaping HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction)
72 } 78 }
  79 +public struct CommentApi {
  80 +}
73 public typealias HHFetchBlock = (UIKit.UIImage?, [Swift.AnyHashable : Any]?) -> Swift.Void 81 public typealias HHFetchBlock = (UIKit.UIImage?, [Swift.AnyHashable : Any]?) -> Swift.Void
74 public typealias onCanceled = (() -> Swift.Void) 82 public typealias onCanceled = (() -> Swift.Void)
75 public typealias onCapFinished = (([HHSDKVideo.SDKCameraImageModel]?) -> Swift.Void) 83 public typealias onCapFinished = (([HHSDKVideo.SDKCameraImageModel]?) -> Swift.Void)
@@ -1058,6 +1066,13 @@ extension HHMSDK { @@ -1058,6 +1066,13 @@ extension HHMSDK {
1058 extension HHMSDK { 1066 extension HHMSDK {
1059 public func sendBaseLog(ex: [Swift.String : Swift.String]? = nil, action: [Swift.String : Swift.String]? = nil) 1067 public func sendBaseLog(ex: [Swift.String : Swift.String]? = nil, action: [Swift.String : Swift.String]? = nil)
1060 } 1068 }
  1069 +@objc public class CommentVC : HHSDKVideo.CommentBaseVC {
  1070 + @objc override dynamic public func viewDidLoad()
  1071 + public static func show(_ orderId: Swift.String, docId: Swift.String, uuid: Swift.Int?, type: HHSDKVideo.HHCallType?, _ model: HHSDKVideo.HHGetQuesetionModel?)
  1072 + @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
  1073 + @objc required dynamic public init?(coder: Foundation.NSCoder)
  1074 + @objc deinit
  1075 +}
1061 @objc final public class EKRatingSymbolsContainerView : UIKit.UIView { 1076 @objc final public class EKRatingSymbolsContainerView : UIKit.UIView {
1062 final public func setup(with message: HHSDKVideo.EKRatingMessage, externalSelection: @escaping HHSDKVideo.EKRatingMessage.Selection) 1077 final public func setup(with message: HHSDKVideo.EKRatingMessage, externalSelection: @escaping HHSDKVideo.EKRatingMessage.Selection)
1063 @objc override dynamic public init(frame: CoreGraphics.CGRect) 1078 @objc override dynamic public init(frame: CoreGraphics.CGRect)
@@ -52,6 +52,12 @@ public var HMDefaultOpt: HHSDKVideo.OptionProtocal { @@ -52,6 +52,12 @@ public var HMDefaultOpt: HHSDKVideo.OptionProtocal {
52 @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) 52 @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
53 @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder) 53 @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
54 } 54 }
  55 +@objc public class CommentBaseVC : UIKit.UIViewController {
  56 + @objc override dynamic public func viewWillAppear(_ animated: Swift.Bool)
  57 + @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
  58 + @objc required dynamic public init?(coder: Foundation.NSCoder)
  59 + @objc deinit
  60 +}
55 public struct EKPopUpMessage { 61 public struct EKPopUpMessage {
56 public typealias EKPopUpMessageAction = () -> () 62 public typealias EKPopUpMessageAction = () -> ()
57 public struct ThemeImage { 63 public struct ThemeImage {
@@ -70,6 +76,8 @@ public struct EKPopUpMessage { @@ -70,6 +76,8 @@ public struct EKPopUpMessage {
70 public var action: HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction 76 public var action: HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction
71 public init(themeImage: HHSDKVideo.EKPopUpMessage.ThemeImage? = nil, title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent, button: HHSDKVideo.EKProperty.ButtonContent, action: @escaping HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction) 77 public init(themeImage: HHSDKVideo.EKPopUpMessage.ThemeImage? = nil, title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent, button: HHSDKVideo.EKProperty.ButtonContent, action: @escaping HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction)
72 } 78 }
  79 +public struct CommentApi {
  80 +}
73 public typealias HHFetchBlock = (UIKit.UIImage?, [Swift.AnyHashable : Any]?) -> Swift.Void 81 public typealias HHFetchBlock = (UIKit.UIImage?, [Swift.AnyHashable : Any]?) -> Swift.Void
74 public typealias onCanceled = (() -> Swift.Void) 82 public typealias onCanceled = (() -> Swift.Void)
75 public typealias onCapFinished = (([HHSDKVideo.SDKCameraImageModel]?) -> Swift.Void) 83 public typealias onCapFinished = (([HHSDKVideo.SDKCameraImageModel]?) -> Swift.Void)
@@ -1058,6 +1066,13 @@ extension HHMSDK { @@ -1058,6 +1066,13 @@ extension HHMSDK {
1058 extension HHMSDK { 1066 extension HHMSDK {
1059 public func sendBaseLog(ex: [Swift.String : Swift.String]? = nil, action: [Swift.String : Swift.String]? = nil) 1067 public func sendBaseLog(ex: [Swift.String : Swift.String]? = nil, action: [Swift.String : Swift.String]? = nil)
1060 } 1068 }
  1069 +@objc public class CommentVC : HHSDKVideo.CommentBaseVC {
  1070 + @objc override dynamic public func viewDidLoad()
  1071 + public static func show(_ orderId: Swift.String, docId: Swift.String, uuid: Swift.Int?, type: HHSDKVideo.HHCallType?, _ model: HHSDKVideo.HHGetQuesetionModel?)
  1072 + @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
  1073 + @objc required dynamic public init?(coder: Foundation.NSCoder)
  1074 + @objc deinit
  1075 +}
1061 @objc final public class EKRatingSymbolsContainerView : UIKit.UIView { 1076 @objc final public class EKRatingSymbolsContainerView : UIKit.UIView {
1062 final public func setup(with message: HHSDKVideo.EKRatingMessage, externalSelection: @escaping HHSDKVideo.EKRatingMessage.Selection) 1077 final public func setup(with message: HHSDKVideo.EKRatingMessage, externalSelection: @escaping HHSDKVideo.EKRatingMessage.Selection)
1063 @objc override dynamic public init(frame: CoreGraphics.CGRect) 1078 @objc override dynamic public init(frame: CoreGraphics.CGRect)
  1 +
  2 +/* Class = "UIButton"; normalTitle = "换个医生问问"; ObjectID = "Mpm-Cy-8No"; */
  3 +"Mpm-Cy-8No.normalTitle" = "Changing doctors";
  4 +
  5 +/* Class = "UILabel"; text = "匿名评价"; ObjectID = "TEp-ay-Bhn"; */
  6 +"TEp-ay-Bhn.text" = "Evaluate Anonymously";
  7 +
  8 +/* Class = "UILabel"; text = "感谢反馈"; ObjectID = "dfJ-Fs-9dC"; */
  9 +"dfJ-Fs-9dC.text" = "Thank for feedback";
  10 +
  11 +/* Class = "UILabel"; text = "很抱歉给您不好的体验,建议您换个医生咨询 视频医生将持续优化用户体验"; ObjectID = "gCO-sp-izU"; */
  12 +"gCO-sp-izU.text" = "I’m sorry to give you a bad experience. I suggest you change your doctor for consultation. The video doctor will continue to optimize the user experience<";
  13 +
  14 +/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "z3D-0Q-OOx"; */
  15 +"z3D-0Q-OOx.normalTitle" = "Complaint";
  1 +
  2 +/* Class = "UILabel"; text = "感谢反馈,我们将努力提升服务体验"; ObjectID = "MT6-nh-pVb"; */
  3 +"MT6-nh-pVb.text" = "Thanks for the feedback, we will strive to improve the service experience";
  4 +
  5 +/* Class = "UILabel"; text = "匿名评价"; ObjectID = "bqq-t4-5L5"; */
  6 +"bqq-t4-5L5.text" = "Evaluate Anonymously";
  1 +
  2 +/* Class = "UIButton"; normalTitle = "匿名提交"; ObjectID = "ILd-ex-a5k"; */
  3 +"ILd-ex-a5k.normalTitle" = "Complaints";
  4 +
  5 +/* Class = "UILabel"; text = "匿名评价"; ObjectID = "MaV-co-mC3"; */
  6 +"MaV-co-mC3.text" = "Evaluate Anonymously";
  7 +
  8 +/* Class = "UILabel"; text = "您的评价会让医生做的更好"; ObjectID = "gZR-Ky-CF9"; */
  9 +"gZR-Ky-CF9.text" = "Your evaluation matters";
  10 +
  11 +/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "tQm-Mq-YYD"; */
  12 +"tQm-Mq-YYD.normalTitle" = "Complaints";
  1 +
  2 +/* Class = "UILabel"; text = "投诉"; ObjectID = "Nuz-EA-N37"; */
  3 +"Nuz-EA-N37.text" = "Complaints";
  4 +
  5 +/* Class = "UIButton"; normalTitle = "提交投诉"; ObjectID = "bsC-DO-hz3"; */
  6 +"bsC-DO-hz3.normalTitle" = "Submit";
  7 +
  8 +/* Class = "UITextField"; placeholder = "请填写您的联系电话,来处理投诉事件"; ObjectID = "oap-bd-mdd"; */
  9 +"oap-bd-mdd.placeholder" = "Enter your mobile number";
  1 +
  2 +/* Class = "UILabel"; text = "我们将尽快处理您的投诉,并给您反馈处理结果。抱歉给您带来不好的体验,您可以换个医生问问。"; ObjectID = "7Yc-6C-XSW"; */
  3 +"7Yc-6C-XSW.text" = "We will deal with your complaint as soon as possible and give you feedback on the result. Sorry to bring you a bad experience, you can change a doctor to ask.";
  4 +
  5 +/* Class = "UILabel"; text = "感谢反馈"; ObjectID = "QhZ-LC-49k"; */
  6 +"QhZ-LC-49k.text" = "Thank you for your feedback";
  7 +
  8 +/* Class = "UIButton"; normalTitle = "换个医生问问"; ObjectID = "eXb-RC-HJK"; */
  9 +"eXb-RC-HJK.normalTitle" = "Ask another doctor";
  10 +
  11 +/* Class = "UILabel"; text = "匿名评价"; ObjectID = "lWS-3J-ofl"; */
  12 +"lWS-3J-ofl.text" = "Anonymous Evaluation";
  1 +
  2 +/* Class = "UILabel"; text = "匿名评价"; ObjectID = "Zp4-HG-4r3"; */
  3 +"Zp4-HG-4r3.text" = "Anonymous Evaluation";
  4 +
  5 +/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "lDS-qr-4pL"; */
  6 +"lDS-qr-4pL.normalTitle" = "Complaints";
  7 +
  8 +/* Class = "UILabel"; text = "医生坐姿端正吗?"; ObjectID = "rOF-Er-fyl"; */
  9 +"rOF-Er-fyl.text" = "Is the doctor sitting up straight?";
  1 +
  2 +/* Class = "UIButton"; normalTitle = "换个医生问问"; ObjectID = "Mpm-Cy-8No"; */
  3 +"Mpm-Cy-8No.normalTitle" = "Changing doctors";
  4 +
  5 +/* Class = "UILabel"; text = "匿名评价"; ObjectID = "TEp-ay-Bhn"; */
  6 +"TEp-ay-Bhn.text" = "Evaluate Anonymously";
  7 +
  8 +/* Class = "UILabel"; text = "感谢反馈"; ObjectID = "dfJ-Fs-9dC"; */
  9 +"dfJ-Fs-9dC.text" = "Thank for feedback";
  10 +
  11 +/* Class = "UILabel"; text = "很抱歉给您不好的体验,建议您换个医生咨询 视频医生将持续优化用户体验"; ObjectID = "gCO-sp-izU"; */
  12 +"gCO-sp-izU.text" = "I’m sorry to give you a bad experience. I suggest you change your doctor for consultation. The video doctor will continue to optimize the user experience<";
  13 +
  14 +/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "z3D-0Q-OOx"; */
  15 +"z3D-0Q-OOx.normalTitle" = "Complaint";
  1 +
  2 +/* Class = "UILabel"; text = "感谢反馈,我们将努力提升服务体验"; ObjectID = "MT6-nh-pVb"; */
  3 +"MT6-nh-pVb.text" = "Thanks for the feedback, we will strive to improve the service experience";
  4 +
  5 +/* Class = "UILabel"; text = "匿名评价"; ObjectID = "bqq-t4-5L5"; */
  6 +"bqq-t4-5L5.text" = "Evaluate Anonymously";
  1 +
  2 +/* Class = "UIButton"; normalTitle = "匿名提交"; ObjectID = "ILd-ex-a5k"; */
  3 +"ILd-ex-a5k.normalTitle" = "Complaints";
  4 +
  5 +/* Class = "UILabel"; text = "匿名评价"; ObjectID = "MaV-co-mC3"; */
  6 +"MaV-co-mC3.text" = "Evaluate Anonymously";
  7 +
  8 +/* Class = "UILabel"; text = "您的评价会让医生做的更好"; ObjectID = "gZR-Ky-CF9"; */
  9 +"gZR-Ky-CF9.text" = "Your evaluation matters";
  10 +
  11 +/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "tQm-Mq-YYD"; */
  12 +"tQm-Mq-YYD.normalTitle" = "Complaints";
  1 +
  2 +/* Class = "UILabel"; text = "投诉"; ObjectID = "Nuz-EA-N37"; */
  3 +"Nuz-EA-N37.text" = "Complaints";
  4 +
  5 +/* Class = "UIButton"; normalTitle = "提交投诉"; ObjectID = "bsC-DO-hz3"; */
  6 +"bsC-DO-hz3.normalTitle" = "Submit";
  7 +
  8 +/* Class = "UITextField"; placeholder = "请填写您的联系电话,来处理投诉事件"; ObjectID = "oap-bd-mdd"; */
  9 +"oap-bd-mdd.placeholder" = "Enter your mobile number";
  1 +
  2 +/* Class = "UILabel"; text = "我们将尽快处理您的投诉,并给您反馈处理结果。抱歉给您带来不好的体验,您可以换个医生问问。"; ObjectID = "7Yc-6C-XSW"; */
  3 +"7Yc-6C-XSW.text" = "We will deal with your complaint as soon as possible and give you feedback on the result. Sorry to bring you a bad experience, you can change a doctor to ask.";
  4 +
  5 +/* Class = "UILabel"; text = "感谢反馈"; ObjectID = "QhZ-LC-49k"; */
  6 +"QhZ-LC-49k.text" = "Thank you for your feedback";
  7 +
  8 +/* Class = "UIButton"; normalTitle = "换个医生问问"; ObjectID = "eXb-RC-HJK"; */
  9 +"eXb-RC-HJK.normalTitle" = "Ask another doctor";
  10 +
  11 +/* Class = "UILabel"; text = "匿名评价"; ObjectID = "lWS-3J-ofl"; */
  12 +"lWS-3J-ofl.text" = "Anonymous Evaluation";
  1 +
  2 +/* Class = "UILabel"; text = "匿名评价"; ObjectID = "Zp4-HG-4r3"; */
  3 +"Zp4-HG-4r3.text" = "Anonymous Evaluation";
  4 +
  5 +/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "lDS-qr-4pL"; */
  6 +"lDS-qr-4pL.normalTitle" = "Complaints";
  7 +
  8 +/* Class = "UILabel"; text = "医生坐姿端正吗?"; ObjectID = "rOF-Er-fyl"; */
  9 +"rOF-Er-fyl.text" = "Is the doctor sitting up straight?";
  1 +
  2 +/* Class = "UIButton"; normalTitle = "换个医生问问"; ObjectID = "Mpm-Cy-8No"; */
  3 +"Mpm-Cy-8No.normalTitle" = "换个医生问问";
  4 +
  5 +/* Class = "UILabel"; text = "匿名评价"; ObjectID = "TEp-ay-Bhn"; */
  6 +"TEp-ay-Bhn.text" = "匿名评价";
  7 +
  8 +/* Class = "UILabel"; text = "感谢反馈"; ObjectID = "dfJ-Fs-9dC"; */
  9 +"dfJ-Fs-9dC.text" = "感谢反馈";
  10 +
  11 +/* Class = "UILabel"; text = "很抱歉给您不好的体验,建议您换个医生咨询 视频医生将持续优化用户体验"; ObjectID = "gCO-sp-izU"; */
  12 +"gCO-sp-izU.text" = "很抱歉给您不好的体验,建议您换个医生咨询 视频医生将持续优化用户体验";
  13 +
  14 +/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "z3D-0Q-OOx"; */
  15 +"z3D-0Q-OOx.normalTitle" = "我要投诉";
  1 +
  2 +/* Class = "UILabel"; text = "感谢反馈,我们将努力提升服务体验"; ObjectID = "MT6-nh-pVb"; */
  3 +"MT6-nh-pVb.text" = "感谢反馈,我们将努力提升服务体验";
  4 +
  5 +/* Class = "UILabel"; text = "匿名评价"; ObjectID = "bqq-t4-5L5"; */
  6 +"bqq-t4-5L5.text" = "匿名评价";
  1 +
  2 +/* Class = "UIButton"; normalTitle = "匿名提交"; ObjectID = "ILd-ex-a5k"; */
  3 +"ILd-ex-a5k.normalTitle" = "匿名提交";
  4 +
  5 +/* Class = "UILabel"; text = "匿名评价"; ObjectID = "MaV-co-mC3"; */
  6 +"MaV-co-mC3.text" = "匿名评价";
  7 +
  8 +/* Class = "UILabel"; text = "您的评价会让医生做的更好"; ObjectID = "gZR-Ky-CF9"; */
  9 +"gZR-Ky-CF9.text" = "您的评价会让医生做的更好";
  10 +
  11 +/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "tQm-Mq-YYD"; */
  12 +"tQm-Mq-YYD.normalTitle" = "我要投诉";
  1 +
  2 +/* Class = "UILabel"; text = "投诉"; ObjectID = "Nuz-EA-N37"; */
  3 +"Nuz-EA-N37.text" = "投诉";
  4 +
  5 +/* Class = "UIButton"; normalTitle = "提交投诉"; ObjectID = "bsC-DO-hz3"; */
  6 +"bsC-DO-hz3.normalTitle" = "提交投诉";
  7 +
  8 +/* Class = "UITextField"; placeholder = "请填写您的联系电话,来处理投诉事件"; ObjectID = "oap-bd-mdd"; */
  9 +"oap-bd-mdd.placeholder" = "请填写您的联系电话,来处理投诉事件";
  1 +
  2 +/* Class = "UILabel"; text = "我们将尽快处理您的投诉,并给您反馈处理结果。抱歉给您带来不好的体验,您可以换个医生问问。"; ObjectID = "7Yc-6C-XSW"; */
  3 +"7Yc-6C-XSW.text" = "我们将尽快处理您的投诉,并给您反馈处理结果。抱歉给您带来不好的体验,您可以换个医生问问。";
  4 +
  5 +/* Class = "UILabel"; text = "感谢反馈"; ObjectID = "QhZ-LC-49k"; */
  6 +"QhZ-LC-49k.text" = "感谢反馈";
  7 +
  8 +/* Class = "UIButton"; normalTitle = "换个医生问问"; ObjectID = "eXb-RC-HJK"; */
  9 +"eXb-RC-HJK.normalTitle" = "换个医生问问";
  10 +
  11 +/* Class = "UILabel"; text = "匿名评价"; ObjectID = "lWS-3J-ofl"; */
  12 +"lWS-3J-ofl.text" = "匿名评价";
  1 +
  2 +/* Class = "UILabel"; text = "匿名评价"; ObjectID = "Zp4-HG-4r3"; */
  3 +"Zp4-HG-4r3.text" = "匿名评价";
  4 +
  5 +/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "lDS-qr-4pL"; */
  6 +"lDS-qr-4pL.normalTitle" = "我要投诉";
  7 +
  8 +/* Class = "UILabel"; text = "医生坐姿端正吗?"; ObjectID = "rOF-Er-fyl"; */
  9 +"rOF-Er-fyl.text" = "医生坐姿端正吗?";