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)));
@class NSCoder;
SWIFT_CLASS("_TtC10HHSDKVideo13CommentBaseVC")
@interface CommentBaseVC : UIViewController
- (void)viewWillAppear:(BOOL)animated;
- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
@end
SWIFT_CLASS("_TtC10HHSDKVideo9CommentVC")
@interface CommentVC : CommentBaseVC
- (void)viewDidLoad;
- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
@end
SWIFT_CLASS("_TtC10HHSDKVideo26EKAccessoryNoteMessageView")
@interface EKAccessoryNoteMessageView : UIView
- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
... ... @@ -600,7 +616,6 @@ SWIFT_CLASS("_TtC10HHSDKVideo12HHPermission")
@property (nonatomic, readonly, copy) NSString * _Nonnull debugDescription;
@end
@class UIViewController;
SWIFT_CLASS("_TtC10HHSDKVideo23HHPhotoPickerController")
@interface HHPhotoPickerController : UINavigationController
... ... @@ -721,6 +736,8 @@ typedef SWIFT_ENUM(NSInteger, PermissionType, open) {
@class UITapGestureRecognizer;
@class NSTimer;
... ... @@ -967,6 +984,22 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
@class NSCoder;
SWIFT_CLASS("_TtC10HHSDKVideo13CommentBaseVC")
@interface CommentBaseVC : UIViewController
- (void)viewWillAppear:(BOOL)animated;
- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
@end
SWIFT_CLASS("_TtC10HHSDKVideo9CommentVC")
@interface CommentVC : CommentBaseVC
- (void)viewDidLoad;
- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
@end
SWIFT_CLASS("_TtC10HHSDKVideo26EKAccessoryNoteMessageView")
@interface EKAccessoryNoteMessageView : UIView
- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
... ... @@ -1352,7 +1385,6 @@ SWIFT_CLASS("_TtC10HHSDKVideo12HHPermission")
@property (nonatomic, readonly, copy) NSString * _Nonnull debugDescription;
@end
@class UIViewController;
SWIFT_CLASS("_TtC10HHSDKVideo23HHPhotoPickerController")
@interface HHPhotoPickerController : UINavigationController
... ... @@ -1473,6 +1505,8 @@ typedef SWIFT_ENUM(NSInteger, PermissionType, open) {
@class UITapGestureRecognizer;
@class NSTimer;
... ...
... ... @@ -52,6 +52,12 @@ public var HMDefaultOpt: HHSDKVideo.OptionProtocal {
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
}
@objc public class CommentBaseVC : UIKit.UIViewController {
@objc override dynamic public func viewWillAppear(_ animated: Swift.Bool)
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder: Foundation.NSCoder)
@objc deinit
}
public struct EKPopUpMessage {
public typealias EKPopUpMessageAction = () -> ()
public struct ThemeImage {
... ... @@ -70,6 +76,8 @@ public struct EKPopUpMessage {
public var action: HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction
public init(themeImage: HHSDKVideo.EKPopUpMessage.ThemeImage? = nil, title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent, button: HHSDKVideo.EKProperty.ButtonContent, action: @escaping HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction)
}
public struct CommentApi {
}
public typealias HHFetchBlock = (UIKit.UIImage?, [Swift.AnyHashable : Any]?) -> Swift.Void
public typealias onCanceled = (() -> Swift.Void)
public typealias onCapFinished = (([HHSDKVideo.SDKCameraImageModel]?) -> Swift.Void)
... ... @@ -1058,6 +1066,13 @@ extension HHMSDK {
extension HHMSDK {
public func sendBaseLog(ex: [Swift.String : Swift.String]? = nil, action: [Swift.String : Swift.String]? = nil)
}
@objc public class CommentVC : HHSDKVideo.CommentBaseVC {
@objc override dynamic public func viewDidLoad()
public static func show(_ orderId: Swift.String, docId: Swift.String, uuid: Swift.Int?, type: HHSDKVideo.HHCallType?, _ model: HHSDKVideo.HHGetQuesetionModel?)
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder: Foundation.NSCoder)
@objc deinit
}
@objc final public class EKRatingSymbolsContainerView : UIKit.UIView {
final public func setup(with message: HHSDKVideo.EKRatingMessage, externalSelection: @escaping HHSDKVideo.EKRatingMessage.Selection)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
... ...
... ... @@ -52,6 +52,12 @@ public var HMDefaultOpt: HHSDKVideo.OptionProtocal {
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
}
@objc public class CommentBaseVC : UIKit.UIViewController {
@objc override dynamic public func viewWillAppear(_ animated: Swift.Bool)
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder: Foundation.NSCoder)
@objc deinit
}
public struct EKPopUpMessage {
public typealias EKPopUpMessageAction = () -> ()
public struct ThemeImage {
... ... @@ -70,6 +76,8 @@ public struct EKPopUpMessage {
public var action: HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction
public init(themeImage: HHSDKVideo.EKPopUpMessage.ThemeImage? = nil, title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent, button: HHSDKVideo.EKProperty.ButtonContent, action: @escaping HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction)
}
public struct CommentApi {
}
public typealias HHFetchBlock = (UIKit.UIImage?, [Swift.AnyHashable : Any]?) -> Swift.Void
public typealias onCanceled = (() -> Swift.Void)
public typealias onCapFinished = (([HHSDKVideo.SDKCameraImageModel]?) -> Swift.Void)
... ... @@ -1058,6 +1066,13 @@ extension HHMSDK {
extension HHMSDK {
public func sendBaseLog(ex: [Swift.String : Swift.String]? = nil, action: [Swift.String : Swift.String]? = nil)
}
@objc public class CommentVC : HHSDKVideo.CommentBaseVC {
@objc override dynamic public func viewDidLoad()
public static func show(_ orderId: Swift.String, docId: Swift.String, uuid: Swift.Int?, type: HHSDKVideo.HHCallType?, _ model: HHSDKVideo.HHGetQuesetionModel?)
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder: Foundation.NSCoder)
@objc deinit
}
@objc final public class EKRatingSymbolsContainerView : UIKit.UIView {
final public func setup(with message: HHSDKVideo.EKRatingMessage, externalSelection: @escaping HHSDKVideo.EKRatingMessage.Selection)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
... ...
... ... @@ -52,6 +52,12 @@ public var HMDefaultOpt: HHSDKVideo.OptionProtocal {
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
}
@objc public class CommentBaseVC : UIKit.UIViewController {
@objc override dynamic public func viewWillAppear(_ animated: Swift.Bool)
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder: Foundation.NSCoder)
@objc deinit
}
public struct EKPopUpMessage {
public typealias EKPopUpMessageAction = () -> ()
public struct ThemeImage {
... ... @@ -70,6 +76,8 @@ public struct EKPopUpMessage {
public var action: HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction
public init(themeImage: HHSDKVideo.EKPopUpMessage.ThemeImage? = nil, title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent, button: HHSDKVideo.EKProperty.ButtonContent, action: @escaping HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction)
}
public struct CommentApi {
}
public typealias HHFetchBlock = (UIKit.UIImage?, [Swift.AnyHashable : Any]?) -> Swift.Void
public typealias onCanceled = (() -> Swift.Void)
public typealias onCapFinished = (([HHSDKVideo.SDKCameraImageModel]?) -> Swift.Void)
... ... @@ -1058,6 +1066,13 @@ extension HHMSDK {
extension HHMSDK {
public func sendBaseLog(ex: [Swift.String : Swift.String]? = nil, action: [Swift.String : Swift.String]? = nil)
}
@objc public class CommentVC : HHSDKVideo.CommentBaseVC {
@objc override dynamic public func viewDidLoad()
public static func show(_ orderId: Swift.String, docId: Swift.String, uuid: Swift.Int?, type: HHSDKVideo.HHCallType?, _ model: HHSDKVideo.HHGetQuesetionModel?)
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder: Foundation.NSCoder)
@objc deinit
}
@objc final public class EKRatingSymbolsContainerView : UIKit.UIView {
final public func setup(with message: HHSDKVideo.EKRatingMessage, externalSelection: @escaping HHSDKVideo.EKRatingMessage.Selection)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
... ...
... ... @@ -52,6 +52,12 @@ public var HMDefaultOpt: HHSDKVideo.OptionProtocal {
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
}
@objc public class CommentBaseVC : UIKit.UIViewController {
@objc override dynamic public func viewWillAppear(_ animated: Swift.Bool)
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder: Foundation.NSCoder)
@objc deinit
}
public struct EKPopUpMessage {
public typealias EKPopUpMessageAction = () -> ()
public struct ThemeImage {
... ... @@ -70,6 +76,8 @@ public struct EKPopUpMessage {
public var action: HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction
public init(themeImage: HHSDKVideo.EKPopUpMessage.ThemeImage? = nil, title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent, button: HHSDKVideo.EKProperty.ButtonContent, action: @escaping HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction)
}
public struct CommentApi {
}
public typealias HHFetchBlock = (UIKit.UIImage?, [Swift.AnyHashable : Any]?) -> Swift.Void
public typealias onCanceled = (() -> Swift.Void)
public typealias onCapFinished = (([HHSDKVideo.SDKCameraImageModel]?) -> Swift.Void)
... ... @@ -1058,6 +1066,13 @@ extension HHMSDK {
extension HHMSDK {
public func sendBaseLog(ex: [Swift.String : Swift.String]? = nil, action: [Swift.String : Swift.String]? = nil)
}
@objc public class CommentVC : HHSDKVideo.CommentBaseVC {
@objc override dynamic public func viewDidLoad()
public static func show(_ orderId: Swift.String, docId: Swift.String, uuid: Swift.Int?, type: HHSDKVideo.HHCallType?, _ model: HHSDKVideo.HHGetQuesetionModel?)
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder: Foundation.NSCoder)
@objc deinit
}
@objc final public class EKRatingSymbolsContainerView : UIKit.UIView {
final public func setup(with message: HHSDKVideo.EKRatingMessage, externalSelection: @escaping HHSDKVideo.EKRatingMessage.Selection)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
... ...
... ... @@ -52,6 +52,12 @@ public var HMDefaultOpt: HHSDKVideo.OptionProtocal {
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
}
@objc public class CommentBaseVC : UIKit.UIViewController {
@objc override dynamic public func viewWillAppear(_ animated: Swift.Bool)
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder: Foundation.NSCoder)
@objc deinit
}
public struct EKPopUpMessage {
public typealias EKPopUpMessageAction = () -> ()
public struct ThemeImage {
... ... @@ -70,6 +76,8 @@ public struct EKPopUpMessage {
public var action: HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction
public init(themeImage: HHSDKVideo.EKPopUpMessage.ThemeImage? = nil, title: HHSDKVideo.EKProperty.LabelContent, description: HHSDKVideo.EKProperty.LabelContent, button: HHSDKVideo.EKProperty.ButtonContent, action: @escaping HHSDKVideo.EKPopUpMessage.EKPopUpMessageAction)
}
public struct CommentApi {
}
public typealias HHFetchBlock = (UIKit.UIImage?, [Swift.AnyHashable : Any]?) -> Swift.Void
public typealias onCanceled = (() -> Swift.Void)
public typealias onCapFinished = (([HHSDKVideo.SDKCameraImageModel]?) -> Swift.Void)
... ... @@ -1058,6 +1066,13 @@ extension HHMSDK {
extension HHMSDK {
public func sendBaseLog(ex: [Swift.String : Swift.String]? = nil, action: [Swift.String : Swift.String]? = nil)
}
@objc public class CommentVC : HHSDKVideo.CommentBaseVC {
@objc override dynamic public func viewDidLoad()
public static func show(_ orderId: Swift.String, docId: Swift.String, uuid: Swift.Int?, type: HHSDKVideo.HHCallType?, _ model: HHSDKVideo.HHGetQuesetionModel?)
@objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
@objc required dynamic public init?(coder: Foundation.NSCoder)
@objc deinit
}
@objc final public class EKRatingSymbolsContainerView : UIKit.UIView {
final public func setup(with message: HHSDKVideo.EKRatingMessage, externalSelection: @escaping HHSDKVideo.EKRatingMessage.Selection)
@objc override dynamic public init(frame: CoreGraphics.CGRect)
... ...
/* Class = "UIButton"; normalTitle = "换个医生问问"; ObjectID = "Mpm-Cy-8No"; */
"Mpm-Cy-8No.normalTitle" = "Changing doctors";
/* Class = "UILabel"; text = "匿名评价"; ObjectID = "TEp-ay-Bhn"; */
"TEp-ay-Bhn.text" = "Evaluate Anonymously";
/* Class = "UILabel"; text = "感谢反馈"; ObjectID = "dfJ-Fs-9dC"; */
"dfJ-Fs-9dC.text" = "Thank for feedback";
/* Class = "UILabel"; text = "很抱歉给您不好的体验,建议您换个医生咨询 视频医生将持续优化用户体验"; ObjectID = "gCO-sp-izU"; */
"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<";
/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "z3D-0Q-OOx"; */
"z3D-0Q-OOx.normalTitle" = "Complaint";
... ...
/* Class = "UILabel"; text = "感谢反馈,我们将努力提升服务体验"; ObjectID = "MT6-nh-pVb"; */
"MT6-nh-pVb.text" = "Thanks for the feedback, we will strive to improve the service experience";
/* Class = "UILabel"; text = "匿名评价"; ObjectID = "bqq-t4-5L5"; */
"bqq-t4-5L5.text" = "Evaluate Anonymously";
... ...
/* Class = "UIButton"; normalTitle = "匿名提交"; ObjectID = "ILd-ex-a5k"; */
"ILd-ex-a5k.normalTitle" = "Complaints";
/* Class = "UILabel"; text = "匿名评价"; ObjectID = "MaV-co-mC3"; */
"MaV-co-mC3.text" = "Evaluate Anonymously";
/* Class = "UILabel"; text = "您的评价会让医生做的更好"; ObjectID = "gZR-Ky-CF9"; */
"gZR-Ky-CF9.text" = "Your evaluation matters";
/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "tQm-Mq-YYD"; */
"tQm-Mq-YYD.normalTitle" = "Complaints";
... ...
/* Class = "UILabel"; text = "投诉"; ObjectID = "Nuz-EA-N37"; */
"Nuz-EA-N37.text" = "Complaints";
/* Class = "UIButton"; normalTitle = "提交投诉"; ObjectID = "bsC-DO-hz3"; */
"bsC-DO-hz3.normalTitle" = "Submit";
/* Class = "UITextField"; placeholder = "请填写您的联系电话,来处理投诉事件"; ObjectID = "oap-bd-mdd"; */
"oap-bd-mdd.placeholder" = "Enter your mobile number";
... ...
/* Class = "UILabel"; text = "我们将尽快处理您的投诉,并给您反馈处理结果。抱歉给您带来不好的体验,您可以换个医生问问。"; ObjectID = "7Yc-6C-XSW"; */
"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.";
/* Class = "UILabel"; text = "感谢反馈"; ObjectID = "QhZ-LC-49k"; */
"QhZ-LC-49k.text" = "Thank you for your feedback";
/* Class = "UIButton"; normalTitle = "换个医生问问"; ObjectID = "eXb-RC-HJK"; */
"eXb-RC-HJK.normalTitle" = "Ask another doctor";
/* Class = "UILabel"; text = "匿名评价"; ObjectID = "lWS-3J-ofl"; */
"lWS-3J-ofl.text" = "Anonymous Evaluation";
... ...
/* Class = "UILabel"; text = "匿名评价"; ObjectID = "Zp4-HG-4r3"; */
"Zp4-HG-4r3.text" = "Anonymous Evaluation";
/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "lDS-qr-4pL"; */
"lDS-qr-4pL.normalTitle" = "Complaints";
/* Class = "UILabel"; text = "医生坐姿端正吗?"; ObjectID = "rOF-Er-fyl"; */
"rOF-Er-fyl.text" = "Is the doctor sitting up straight?";
... ...
/* Class = "UIButton"; normalTitle = "换个医生问问"; ObjectID = "Mpm-Cy-8No"; */
"Mpm-Cy-8No.normalTitle" = "Changing doctors";
/* Class = "UILabel"; text = "匿名评价"; ObjectID = "TEp-ay-Bhn"; */
"TEp-ay-Bhn.text" = "Evaluate Anonymously";
/* Class = "UILabel"; text = "感谢反馈"; ObjectID = "dfJ-Fs-9dC"; */
"dfJ-Fs-9dC.text" = "Thank for feedback";
/* Class = "UILabel"; text = "很抱歉给您不好的体验,建议您换个医生咨询 视频医生将持续优化用户体验"; ObjectID = "gCO-sp-izU"; */
"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<";
/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "z3D-0Q-OOx"; */
"z3D-0Q-OOx.normalTitle" = "Complaint";
... ...
/* Class = "UILabel"; text = "感谢反馈,我们将努力提升服务体验"; ObjectID = "MT6-nh-pVb"; */
"MT6-nh-pVb.text" = "Thanks for the feedback, we will strive to improve the service experience";
/* Class = "UILabel"; text = "匿名评价"; ObjectID = "bqq-t4-5L5"; */
"bqq-t4-5L5.text" = "Evaluate Anonymously";
... ...
/* Class = "UIButton"; normalTitle = "匿名提交"; ObjectID = "ILd-ex-a5k"; */
"ILd-ex-a5k.normalTitle" = "Complaints";
/* Class = "UILabel"; text = "匿名评价"; ObjectID = "MaV-co-mC3"; */
"MaV-co-mC3.text" = "Evaluate Anonymously";
/* Class = "UILabel"; text = "您的评价会让医生做的更好"; ObjectID = "gZR-Ky-CF9"; */
"gZR-Ky-CF9.text" = "Your evaluation matters";
/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "tQm-Mq-YYD"; */
"tQm-Mq-YYD.normalTitle" = "Complaints";
... ...
/* Class = "UILabel"; text = "投诉"; ObjectID = "Nuz-EA-N37"; */
"Nuz-EA-N37.text" = "Complaints";
/* Class = "UIButton"; normalTitle = "提交投诉"; ObjectID = "bsC-DO-hz3"; */
"bsC-DO-hz3.normalTitle" = "Submit";
/* Class = "UITextField"; placeholder = "请填写您的联系电话,来处理投诉事件"; ObjectID = "oap-bd-mdd"; */
"oap-bd-mdd.placeholder" = "Enter your mobile number";
... ...
/* Class = "UILabel"; text = "我们将尽快处理您的投诉,并给您反馈处理结果。抱歉给您带来不好的体验,您可以换个医生问问。"; ObjectID = "7Yc-6C-XSW"; */
"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.";
/* Class = "UILabel"; text = "感谢反馈"; ObjectID = "QhZ-LC-49k"; */
"QhZ-LC-49k.text" = "Thank you for your feedback";
/* Class = "UIButton"; normalTitle = "换个医生问问"; ObjectID = "eXb-RC-HJK"; */
"eXb-RC-HJK.normalTitle" = "Ask another doctor";
/* Class = "UILabel"; text = "匿名评价"; ObjectID = "lWS-3J-ofl"; */
"lWS-3J-ofl.text" = "Anonymous Evaluation";
... ...
/* Class = "UILabel"; text = "匿名评价"; ObjectID = "Zp4-HG-4r3"; */
"Zp4-HG-4r3.text" = "Anonymous Evaluation";
/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "lDS-qr-4pL"; */
"lDS-qr-4pL.normalTitle" = "Complaints";
/* Class = "UILabel"; text = "医生坐姿端正吗?"; ObjectID = "rOF-Er-fyl"; */
"rOF-Er-fyl.text" = "Is the doctor sitting up straight?";
... ...
/* Class = "UIButton"; normalTitle = "换个医生问问"; ObjectID = "Mpm-Cy-8No"; */
"Mpm-Cy-8No.normalTitle" = "换个医生问问";
/* Class = "UILabel"; text = "匿名评价"; ObjectID = "TEp-ay-Bhn"; */
"TEp-ay-Bhn.text" = "匿名评价";
/* Class = "UILabel"; text = "感谢反馈"; ObjectID = "dfJ-Fs-9dC"; */
"dfJ-Fs-9dC.text" = "感谢反馈";
/* Class = "UILabel"; text = "很抱歉给您不好的体验,建议您换个医生咨询 视频医生将持续优化用户体验"; ObjectID = "gCO-sp-izU"; */
"gCO-sp-izU.text" = "很抱歉给您不好的体验,建议您换个医生咨询 视频医生将持续优化用户体验";
/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "z3D-0Q-OOx"; */
"z3D-0Q-OOx.normalTitle" = "我要投诉";
... ...
/* Class = "UILabel"; text = "感谢反馈,我们将努力提升服务体验"; ObjectID = "MT6-nh-pVb"; */
"MT6-nh-pVb.text" = "感谢反馈,我们将努力提升服务体验";
/* Class = "UILabel"; text = "匿名评价"; ObjectID = "bqq-t4-5L5"; */
"bqq-t4-5L5.text" = "匿名评价";
... ...
/* Class = "UIButton"; normalTitle = "匿名提交"; ObjectID = "ILd-ex-a5k"; */
"ILd-ex-a5k.normalTitle" = "匿名提交";
/* Class = "UILabel"; text = "匿名评价"; ObjectID = "MaV-co-mC3"; */
"MaV-co-mC3.text" = "匿名评价";
/* Class = "UILabel"; text = "您的评价会让医生做的更好"; ObjectID = "gZR-Ky-CF9"; */
"gZR-Ky-CF9.text" = "您的评价会让医生做的更好";
/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "tQm-Mq-YYD"; */
"tQm-Mq-YYD.normalTitle" = "我要投诉";
... ...
/* Class = "UILabel"; text = "投诉"; ObjectID = "Nuz-EA-N37"; */
"Nuz-EA-N37.text" = "投诉";
/* Class = "UIButton"; normalTitle = "提交投诉"; ObjectID = "bsC-DO-hz3"; */
"bsC-DO-hz3.normalTitle" = "提交投诉";
/* Class = "UITextField"; placeholder = "请填写您的联系电话,来处理投诉事件"; ObjectID = "oap-bd-mdd"; */
"oap-bd-mdd.placeholder" = "请填写您的联系电话,来处理投诉事件";
... ...
/* Class = "UILabel"; text = "我们将尽快处理您的投诉,并给您反馈处理结果。抱歉给您带来不好的体验,您可以换个医生问问。"; ObjectID = "7Yc-6C-XSW"; */
"7Yc-6C-XSW.text" = "我们将尽快处理您的投诉,并给您反馈处理结果。抱歉给您带来不好的体验,您可以换个医生问问。";
/* Class = "UILabel"; text = "感谢反馈"; ObjectID = "QhZ-LC-49k"; */
"QhZ-LC-49k.text" = "感谢反馈";
/* Class = "UIButton"; normalTitle = "换个医生问问"; ObjectID = "eXb-RC-HJK"; */
"eXb-RC-HJK.normalTitle" = "换个医生问问";
/* Class = "UILabel"; text = "匿名评价"; ObjectID = "lWS-3J-ofl"; */
"lWS-3J-ofl.text" = "匿名评价";
... ...
/* Class = "UILabel"; text = "匿名评价"; ObjectID = "Zp4-HG-4r3"; */
"Zp4-HG-4r3.text" = "匿名评价";
/* Class = "UIButton"; normalTitle = "我要投诉"; ObjectID = "lDS-qr-4pL"; */
"lDS-qr-4pL.normalTitle" = "我要投诉";
/* Class = "UILabel"; text = "医生坐姿端正吗?"; ObjectID = "rOF-Er-fyl"; */
"rOF-Er-fyl.text" = "医生坐姿端正吗?";
... ...