Showing
19 changed files
with
8 additions
and
26 deletions
No preview for this file type
No preview for this file type
This file is too large to display.
No preview for this file type
No preview for this file type
No preview for this file type

8.76 KB
@@ -171,7 +171,6 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); | @@ -171,7 +171,6 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); | ||
171 | @import Foundation; | 171 | @import Foundation; |
172 | @import ObjectiveC; | 172 | @import ObjectiveC; |
173 | @import Photos; | 173 | @import Photos; |
174 | -@import QuartzCore; | ||
175 | @import UIKit; | 174 | @import UIKit; |
176 | #endif | 175 | #endif |
177 | 176 | ||
@@ -286,29 +285,6 @@ SWIFT_CLASS("_TtC11HHDoctorSDK15HHDeviceManager") | @@ -286,29 +285,6 @@ SWIFT_CLASS("_TtC11HHDoctorSDK15HHDeviceManager") | ||
286 | @end | 285 | @end |
287 | 286 | ||
288 | 287 | ||
289 | -SWIFT_CLASS("_TtC11HHDoctorSDK14HHEveluateView") | ||
290 | -@interface HHEveluateView : UIView | ||
291 | -- (void)awakeFromNib; | ||
292 | -- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; | ||
293 | -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; | ||
294 | -@end | ||
295 | - | ||
296 | -@class CAAnimation; | ||
297 | - | ||
298 | -@interface HHEveluateView (SWIFT_EXTENSION(HHDoctorSDK)) <CAAnimationDelegate> | ||
299 | -- (void)animationDidStop:(CAAnimation * _Nonnull)anim finished:(BOOL)flag; | ||
300 | -@end | ||
301 | - | ||
302 | - | ||
303 | -@interface HHEveluateView (SWIFT_EXTENSION(HHDoctorSDK)) <FloatRatingViewDelegate> | ||
304 | -- (void)floatRatingView:(FloatRatingView * _Nonnull)ratingView didUpdate:(float)rating; | ||
305 | -@end | ||
306 | - | ||
307 | - | ||
308 | - | ||
309 | - | ||
310 | - | ||
311 | - | ||
312 | SWIFT_CLASS("_TtC11HHDoctorSDK18HHFileCacheManager") | 288 | SWIFT_CLASS("_TtC11HHDoctorSDK18HHFileCacheManager") |
313 | @interface HHFileCacheManager : NSObject | 289 | @interface HHFileCacheManager : NSObject |
314 | - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; | 290 | - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; |
@@ -360,12 +336,18 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong, getter=defau | @@ -360,12 +336,18 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong, getter=defau | ||
360 | /// \param option 可选的 SDK 配置 | 336 | /// \param option 可选的 SDK 配置 |
361 | /// | 337 | /// |
362 | - (void)startWithOption:(HHSDKOptions * _Nullable)option; | 338 | - (void)startWithOption:(HHSDKOptions * _Nullable)option; |
339 | +/// 登录账户 | ||
340 | +/// \param userToken 用户的唯一标志 | ||
341 | +/// | ||
342 | +/// \param completion 完成的回调 | ||
343 | +/// | ||
344 | +- (void)loginWithUserToken:(NSString * _Nonnull)userToken completion:(void (^ _Nonnull)(NSError * _Nullable))completion; | ||
363 | /// 登录账号 | 345 | /// 登录账号 |
364 | /// \param uuid 用户的 唯一标志符 | 346 | /// \param uuid 用户的 唯一标志符 |
365 | /// | 347 | /// |
366 | /// \param completion 完成回调 | 348 | /// \param completion 完成回调 |
367 | /// | 349 | /// |
368 | -- (void)loginWithUuid:(NSInteger)uuid completion:(void (^ _Nonnull)(NSError * _Nullable))completion; | 350 | +- (void)loginWithUuid:(NSInteger)uuid completion:(void (^ _Nonnull)(NSError * _Nullable))completion SWIFT_DEPRECATED_MSG("Use login(userToken: String, completion: @escaping HHLoginHandler) instead."); |
369 | /// 自动登录(如果已经保存了用户帐号和令牌,建议使用这个登录方式) | 351 | /// 自动登录(如果已经保存了用户帐号和令牌,建议使用这个登录方式) |
370 | /// \param uuid 自动登录参数 | 352 | /// \param uuid 自动登录参数 |
371 | /// | 353 | /// |
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
-
Please register or login to post a comment