ashen_23

sdk upgrade

Showing 55 changed files with 63 additions and 65 deletions
No preview for this file type
No preview for this file type
@@ -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>05:27:14:20</string></dict> 6 +<string>08:26:18:37</string></dict>
7 </plist> 7 </plist>

7.62 KB | W: | H:

3.67 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

7.5 KB | W: | H:

3.68 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

10.8 KB | W: | H:

5.41 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

11 KB | W: | H:

5.34 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

11.8 KB | W: | H:

5.57 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

12.2 KB | W: | H:

5.54 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

7.27 KB | W: | H:

3.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

7.13 KB | W: | H:

3.7 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
@@ -242,16 +242,6 @@ SWIFT_PROTOCOL("_TtP11HHDoctorSDK23FloatRatingViewDelegate_") @@ -242,16 +242,6 @@ SWIFT_PROTOCOL("_TtP11HHDoctorSDK23FloatRatingViewDelegate_")
242 - (void)floatRatingView:(FloatRatingView * _Nonnull)ratingView isUpdating:(float)rating; 242 - (void)floatRatingView:(FloatRatingView * _Nonnull)ratingView isUpdating:(float)rating;
243 @end 243 @end
244 244
245 -  
246 -SWIFT_CLASS("_TtC11HHDoctorSDK16HHAccountManager")  
247 -@interface HHAccountManager : NSObject  
248 -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;  
249 -@end  
250 -  
251 -  
252 -  
253 -  
254 -  
255 /// 呼叫类型 245 /// 呼叫类型
256 /// <ul> 246 /// <ul>
257 /// <li> 247 /// <li>
@@ -267,6 +257,13 @@ typedef SWIFT_ENUM(NSInteger, HHCallType, closed) { @@ -267,6 +257,13 @@ typedef SWIFT_ENUM(NSInteger, HHCallType, closed) {
267 }; 257 };
268 258
269 259
  260 +/// 用户信息
  261 +SWIFT_CLASS("_TtC11HHDoctorSDK12HHCallerInfo")
  262 +@interface HHCallerInfo : NSObject
  263 +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
  264 +@end
  265 +
  266 +
270 SWIFT_CLASS("_TtC11HHDoctorSDK11HHDateUtils") 267 SWIFT_CLASS("_TtC11HHDoctorSDK11HHDateUtils")
271 @interface HHDateUtils : NSObject 268 @interface HHDateUtils : NSObject
272 - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; 269 - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@@ -377,12 +374,17 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong, getter=defau @@ -377,12 +374,17 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong, getter=defau
377 /// returns: 374 /// returns:
378 /// url 375 /// url
379 - (NSString * _Nonnull)getAllMedicsWithUserToken:(NSString * _Nonnull)userToken SWIFT_WARN_UNUSED_RESULT; 376 - (NSString * _Nonnull)getAllMedicsWithUserToken:(NSString * _Nonnull)userToken SWIFT_WARN_UNUSED_RESULT;
380 -/// 主叫发起通话 377 +/// 主动发起多人通话
381 /// \param type 呼叫类型 378 /// \param type 呼叫类型
382 /// 379 ///
383 -/// \param busyCanJump 繁忙时是否跳转 380 +/// \param callee 被呼叫人的信息
  381 +///
  382 +- (void)startTeamCall:(enum HHCallType)type callee:(HHCallerInfo * _Nonnull)callee;
  383 +/// 主叫发起通话
  384 +/// \param type 呼叫类型
384 /// 385 ///
385 - (void)startCall:(enum HHCallType)type; 386 - (void)startCall:(enum HHCallType)type;
  387 +- (void)terminate;
386 /// 更新APNS Token 388 /// 更新APNS Token
387 /// \param token APNS Token 389 /// \param token APNS Token
388 /// 390 ///
@@ -411,6 +413,7 @@ enum PermissionType : NSInteger; @@ -411,6 +413,7 @@ enum PermissionType : NSInteger;
411 /// 视频管理器代理 413 /// 视频管理器代理
412 SWIFT_PROTOCOL("_TtP11HHDoctorSDK16HHMVideoDelegate_") 414 SWIFT_PROTOCOL("_TtP11HHDoctorSDK16HHMVideoDelegate_")
413 @protocol HHMVideoDelegate <NSObject> 415 @protocol HHMVideoDelegate <NSObject>
  416 +@optional
414 /// 主动视频时的呼叫状态变化 417 /// 主动视频时的呼叫状态变化
415 /// \param state 当前呼叫状态 418 /// \param state 当前呼叫状态
416 /// 419 ///
@@ -495,21 +498,12 @@ typedef SWIFT_ENUM(NSInteger, HHPagerViewTransformerType, closed) { @@ -495,21 +498,12 @@ typedef SWIFT_ENUM(NSInteger, HHPagerViewTransformerType, closed) {
495 HHPagerViewTransformerTypeCubic = 8, 498 HHPagerViewTransformerTypeCubic = 8,
496 }; 499 };
497 500
498 -@class UIViewController;  
499 -  
500 -SWIFT_CLASS("_TtC11HHDoctorSDK23HHPhotoPickerController")  
501 -@interface HHPhotoPickerController : UINavigationController  
502 -- (void)viewDidLoad;  
503 -- (nonnull instancetype)initWithNavigationBarClass:(Class _Nullable)navigationBarClass toolbarClass:(Class _Nullable)toolbarClass OBJC_DESIGNATED_INITIALIZER SWIFT_AVAILABILITY(ios,introduced=5.0);  
504 -- (nonnull instancetype)initWithRootViewController:(UIViewController * _Nonnull)rootViewController OBJC_DESIGNATED_INITIALIZER;  
505 -- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;  
506 -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;  
507 -@end  
508 -  
509 501
510 /// 全局配置 502 /// 全局配置
511 SWIFT_CLASS("_TtC11HHDoctorSDK12HHSDKOptions") 503 SWIFT_CLASS("_TtC11HHDoctorSDK12HHSDKOptions")
512 @interface HHSDKOptions : NSObject 504 @interface HHSDKOptions : NSObject
  505 +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong, getter=default) HHSDKOptions * _Nonnull default_;)
  506 ++ (HHSDKOptions * _Nonnull)default SWIFT_WARN_UNUSED_RESULT;
513 /// hud 自动显示的时间 507 /// hud 自动显示的时间
514 @property (nonatomic) NSTimeInterval hudDisTime; 508 @property (nonatomic) NSTimeInterval hudDisTime;
515 /// 调试模式(打印日志) 509 /// 调试模式(打印日志)
@@ -526,6 +520,8 @@ SWIFT_CLASS("_TtC11HHDoctorSDK12HHSDKOptions") @@ -526,6 +520,8 @@ SWIFT_CLASS("_TtC11HHDoctorSDK12HHSDKOptions")
526 @property (nonatomic) BOOL allowBeauty; 520 @property (nonatomic) BOOL allowBeauty;
527 /// 允许视频完成后评价 521 /// 允许视频完成后评价
528 @property (nonatomic) BOOL allowEvaluate; 522 @property (nonatomic) BOOL allowEvaluate;
  523 +/// 不要配置此参数
  524 +@property (nonatomic) BOOL isShowDocInfo;
529 - (nonnull instancetype)initWithProductId:(NSString * _Nonnull)productId isDebug:(BOOL)isDebug isDevelop:(BOOL)isDevelop OBJC_DESIGNATED_INITIALIZER; 525 - (nonnull instancetype)initWithProductId:(NSString * _Nonnull)productId isDebug:(BOOL)isDebug isDevelop:(BOOL)isDevelop OBJC_DESIGNATED_INITIALIZER;
530 - (nonnull instancetype)init SWIFT_UNAVAILABLE; 526 - (nonnull instancetype)init SWIFT_UNAVAILABLE;
531 + (nonnull instancetype)new SWIFT_DEPRECATED_MSG("-init is unavailable"); 527 + (nonnull instancetype)new SWIFT_DEPRECATED_MSG("-init is unavailable");
@@ -577,6 +573,8 @@ typedef SWIFT_ENUM(NSInteger, PermissionType, closed) { @@ -577,6 +573,8 @@ typedef SWIFT_ENUM(NSInteger, PermissionType, closed) {
577 573
578 574
579 575
  576 +
  577 +
580 @class UITapGestureRecognizer; 578 @class UITapGestureRecognizer;
581 @class NSTimer; 579 @class NSTimer;
582 580
@@ -32,18 +32,18 @@ @@ -32,18 +32,18 @@
32 #import "ijksdl_vout_overlay_videotoolbox.h" 32 #import "ijksdl_vout_overlay_videotoolbox.h"
33 #import "NTESGLView.h" 33 #import "NTESGLView.h"
34 #import "ObjectMapper.h" 34 #import "ObjectMapper.h"
  35 +#import "HHPhotoPicker.h"
35 #import "CGGeometry+RSKImageCropper.h" 36 #import "CGGeometry+RSKImageCropper.h"
36 -#import "RSKImageCropper.h" 37 +#import "RSKImageCropVC.h"
37 #import "RSKImageCropViewController+Protected.h" 38 #import "RSKImageCropViewController+Protected.h"
38 -#import "RSKImageCropViewController.h"  
39 -#import "RSKImageScrollView.h"  
40 -#import "RSKTouchView.h" 39 +#import "SDKImageCropper.h"
  40 +#import "SDKImageScrollView.h"
  41 +#import "SDKTouchView.h"
41 #import "UIApplication+RSKImageCropper.h" 42 #import "UIApplication+RSKImageCropper.h"
42 #import "UIImage+RSKImageCropper.h" 43 #import "UIImage+RSKImageCropper.h"
43 -#import "HHCameraImageModel.h"  
44 -#import "PhotoPicker.h"  
45 -#import "HHCameraUtil.h"  
46 -#import "HHPHAssetManager.h" 44 +#import "SDKCameraImageModel.h"
  45 +#import "SDKCameraUtil.h"
  46 +#import "SDKPHAssetManager.h"
47 #import "HttpsDNSAuth.h" 47 #import "HttpsDNSAuth.h"
48 #import "HHAnimatedImageRep.h" 48 #import "HHAnimatedImageRep.h"
49 #import "HHImageCache.h" 49 #import "HHImageCache.h"
@@ -9,6 +9,6 @@ @@ -9,6 +9,6 @@
9 #ifndef PhotoPicker_h 9 #ifndef PhotoPicker_h
10 #define PhotoPicker_h 10 #define PhotoPicker_h
11 11
12 -#import "HHCameraImageModel.h" 12 +#import "SDKCameraImageModel.h"
13 13
14 #endif /* PhotoPicker_h */ 14 #endif /* PhotoPicker_h */
1 // 1 //
2 -// RSKImageCropViewController.h 2 +// RSKImageCropVC.h
3 // 3 //
4 // Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/ 4 // Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/
5 // 5 //
@@ -24,8 +24,8 @@ @@ -24,8 +24,8 @@
24 24
25 #import <UIKit/UIKit.h> 25 #import <UIKit/UIKit.h>
26 26
27 -@protocol RSKImageCropViewControllerDataSource;  
28 -@protocol RSKImageCropViewControllerDelegate; 27 +@protocol RSKImageCropVCDataSource;
  28 +@protocol RSKImageCropVCDelegate;
29 29
30 /** 30 /**
31 Types of supported crop modes. 31 Types of supported crop modes.
@@ -40,7 +40,7 @@ typedef NS_ENUM(NSUInteger, RSKImageCropMode) { @@ -40,7 +40,7 @@ typedef NS_ENUM(NSUInteger, RSKImageCropMode) {
40 40
41 }; 41 };
42 42
43 -@interface RSKImageCropViewController : UIViewController 43 +@interface RSKImageCropVC : UIViewController
44 44
45 /** 45 /**
46 Designated initializer. Initializes and returns a newly allocated view controller object with the specified image. 46 Designated initializer. Initializes and returns a newly allocated view controller object with the specified image.
@@ -64,16 +64,16 @@ typedef NS_ENUM(NSUInteger, RSKImageCropMode) { @@ -64,16 +64,16 @@ typedef NS_ENUM(NSUInteger, RSKImageCropMode) {
64 /** 64 /**
65 The receiver's delegate. 65 The receiver's delegate.
66 66
67 - @discussion A `RSKImageCropViewControllerDelegate` delegate responds to messages sent by completing / canceling crop the image in the image crop view controller. 67 + @discussion A `RSKImageCropVCDelegate` delegate responds to messages sent by completing / canceling crop the image in the image crop view controller.
68 */ 68 */
69 -@property (weak, nonatomic) id<RSKImageCropViewControllerDelegate> delegate; 69 +@property (weak, nonatomic) id<RSKImageCropVCDelegate> delegate;
70 70
71 /** 71 /**
72 The receiver's data source. 72 The receiver's data source.
73 73
74 - @discussion A `RSKImageCropViewControllerDataSource` data source provides a custom rect and a custom path for the mask. 74 + @discussion A `RSKImageCropVCDataSource` data source provides a custom rect and a custom path for the mask.
75 */ 75 */
76 -@property (weak, nonatomic) id<RSKImageCropViewControllerDataSource> dataSource; 76 +@property (weak, nonatomic) id<RSKImageCropVCDataSource> dataSource;
77 77
78 ///-------------------------- 78 ///--------------------------
79 /// @name Accessing the Image 79 /// @name Accessing the Image
@@ -191,9 +191,9 @@ typedef NS_ENUM(NSUInteger, RSKImageCropMode) { @@ -191,9 +191,9 @@ typedef NS_ENUM(NSUInteger, RSKImageCropMode) {
191 @end 191 @end
192 192
193 /** 193 /**
194 - The `RSKImageCropViewControllerDataSource` protocol is adopted by an object that provides a custom rect and a custom path for the mask. 194 + The `RSKImageCropVCDataSource` protocol is adopted by an object that provides a custom rect and a custom path for the mask.
195 */ 195 */
196 -@protocol RSKImageCropViewControllerDataSource <NSObject> 196 +@protocol RSKImageCropVCDataSource <NSObject>
197 197
198 /** 198 /**
199 Asks the data source a custom rect for the mask. 199 Asks the data source a custom rect for the mask.
@@ -204,7 +204,7 @@ typedef NS_ENUM(NSUInteger, RSKImageCropMode) { @@ -204,7 +204,7 @@ typedef NS_ENUM(NSUInteger, RSKImageCropMode) {
204 204
205 @discussion Only valid if `cropMode` is `RSKImageCropModeCustom`. 205 @discussion Only valid if `cropMode` is `RSKImageCropModeCustom`.
206 */ 206 */
207 -- (CGRect)imageCropViewControllerCustomMaskRect:(RSKImageCropViewController *)controller; 207 +- (CGRect)imageCropViewControllerCustomMaskRect:(RSKImageCropVC *)controller;
208 208
209 /** 209 /**
210 Asks the data source a custom path for the mask. 210 Asks the data source a custom path for the mask.
@@ -215,7 +215,7 @@ typedef NS_ENUM(NSUInteger, RSKImageCropMode) { @@ -215,7 +215,7 @@ typedef NS_ENUM(NSUInteger, RSKImageCropMode) {
215 215
216 @discussion Only valid if `cropMode` is `RSKImageCropModeCustom`. 216 @discussion Only valid if `cropMode` is `RSKImageCropModeCustom`.
217 */ 217 */
218 -- (UIBezierPath *)imageCropViewControllerCustomMaskPath:(RSKImageCropViewController *)controller; 218 +- (UIBezierPath *)imageCropViewControllerCustomMaskPath:(RSKImageCropVC *)controller;
219 219
220 @optional 220 @optional
221 221
@@ -228,35 +228,35 @@ typedef NS_ENUM(NSUInteger, RSKImageCropMode) { @@ -228,35 +228,35 @@ typedef NS_ENUM(NSUInteger, RSKImageCropMode) {
228 228
229 @discussion Only valid if `cropMode` is `RSKImageCropModeCustom`. If you want to support the rotation when `cropMode` is `RSKImageCropModeCustom` you must implement it. Will be marked as `required` in version `2.0.0`. 229 @discussion Only valid if `cropMode` is `RSKImageCropModeCustom`. If you want to support the rotation when `cropMode` is `RSKImageCropModeCustom` you must implement it. Will be marked as `required` in version `2.0.0`.
230 */ 230 */
231 -- (CGRect)imageCropViewControllerCustomMovementRect:(RSKImageCropViewController *)controller; 231 +- (CGRect)imageCropViewControllerCustomMovementRect:(RSKImageCropVC *)controller;
232 232
233 @end 233 @end
234 234
235 /** 235 /**
236 - The `RSKImageCropViewControllerDelegate` protocol defines messages sent to a image crop view controller delegate when crop image was canceled or the original image was cropped. 236 + The `RSKImageCropVCDelegate` protocol defines messages sent to a image crop view controller delegate when crop image was canceled or the original image was cropped.
237 */ 237 */
238 -@protocol RSKImageCropViewControllerDelegate <NSObject> 238 +@protocol RSKImageCropVCDelegate <NSObject>
239 239
240 @optional 240 @optional
241 241
242 /** 242 /**
243 Tells the delegate that crop image has been canceled. 243 Tells the delegate that crop image has been canceled.
244 */ 244 */
245 -- (void)imageCropViewControllerDidCancelCrop:(RSKImageCropViewController *)controller; 245 +- (void)imageCropViewControllerDidCancelCrop:(RSKImageCropVC *)controller;
246 246
247 /** 247 /**
248 Tells the delegate that the original image will be cropped. 248 Tells the delegate that the original image will be cropped.
249 */ 249 */
250 -- (void)imageCropViewController:(RSKImageCropViewController *)controller willCropImage:(UIImage *)originalImage; 250 +- (void)imageCropViewController:(RSKImageCropVC *)controller willCropImage:(UIImage *)originalImage;
251 251
252 /** 252 /**
253 Tells the delegate that the original image has been cropped. Additionally provides a crop rect used to produce image. 253 Tells the delegate that the original image has been cropped. Additionally provides a crop rect used to produce image.
254 */ 254 */
255 -- (void)imageCropViewController:(RSKImageCropViewController *)controller didCropImage:(UIImage *)croppedImage usingCropRect:(CGRect)cropRect; 255 +- (void)imageCropViewController:(RSKImageCropVC *)controller didCropImage:(UIImage *)croppedImage usingCropRect:(CGRect)cropRect;
256 256
257 /** 257 /**
258 Tells the delegate that the original image has been cropped. Additionally provides a crop rect and a rotation angle used to produce image. 258 Tells the delegate that the original image has been cropped. Additionally provides a crop rect and a rotation angle used to produce image.
259 */ 259 */
260 -- (void)imageCropViewController:(RSKImageCropViewController *)controller didCropImage:(UIImage *)croppedImage usingCropRect:(CGRect)cropRect rotationAngle:(CGFloat)rotationAngle; 260 +- (void)imageCropViewController:(RSKImageCropVC *)controller didCropImage:(UIImage *)croppedImage usingCropRect:(CGRect)cropRect rotationAngle:(CGFloat)rotationAngle;
261 261
262 @end 262 @end
1 // 1 //
2 -// RSKImageCropViewController+Protected.h 2 +// RSKImageCropVC+Protected.h
3 // 3 //
4 // Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/ 4 // Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/
5 // 5 //
@@ -23,11 +23,11 @@ @@ -23,11 +23,11 @@
23 // 23 //
24 24
25 /** 25 /**
26 - The methods in the RSKImageCropViewControllerProtectedMethods category 26 + The methods in the RSKImageCropVCProtectedMethods category
27 typically should only be called by subclasses which are implementing new 27 typically should only be called by subclasses which are implementing new
28 image crop view controllers. They may be overridden but must call super. 28 image crop view controllers. They may be overridden but must call super.
29 */ 29 */
30 -@interface RSKImageCropViewController (RSKImageCropViewControllerProtectedMethods) 30 +@interface RSKImageCropVC (RSKImageCropVCProtectedMethods)
31 31
32 /** 32 /**
33 Asynchronously crops the original image in accordance with the current settings and tells the delegate that the original image will be / has been cropped. 33 Asynchronously crops the original image in accordance with the current settings and tells the delegate that the original image will be / has been cropped.
@@ -9,7 +9,7 @@ @@ -9,7 +9,7 @@
9 #import <Foundation/Foundation.h> 9 #import <Foundation/Foundation.h>
10 #import <UIKit/UIKit.h> 10 #import <UIKit/UIKit.h>
11 11
12 -@interface HHCameraImageModel : NSObject 12 +@interface SDKCameraImageModel : NSObject
13 13
14 /// 全尺寸图像 14 /// 全尺寸图像
15 @property(nonatomic,strong)NSString *fullPath; 15 @property(nonatomic,strong)NSString *fullPath;
1 // 1 //
2 -// HHCameraUtil.h 2 +// SDKCameraUtil.h
3 // CameraLibrary 3 // CameraLibrary
4 // 4 //
5 // Created by shmily on 16/5/25. 5 // Created by shmily on 16/5/25.
@@ -20,7 +20,7 @@ typedef enum : NSUInteger { @@ -20,7 +20,7 @@ typedef enum : NSUInteger {
20 } ProType; 20 } ProType;
21 21
22 22
23 -@interface HHCameraUtil : NSObject 23 +@interface SDKCameraUtil : NSObject
24 24
25 /// 是否应该被压缩 25 /// 是否应该被压缩
26 @property(nonatomic,assign)BOOL shouldReduce; 26 @property(nonatomic,assign)BOOL shouldReduce;
@@ -26,4 +26,4 @@ @@ -26,4 +26,4 @@
26 `RSKImageCropper` is an image cropper for iOS like in the Contacts app with support for landscape orientation. 26 `RSKImageCropper` is an image cropper for iOS like in the Contacts app with support for landscape orientation.
27 */ 27 */
28 28
29 -#import "RSKImageCropViewController.h" 29 +#import "RSKImageCropVC.h"
1 /* 1 /*
2 - File: RSKImageScrollView.h 2 + File: SDKImageScrollView.h
3 Abstract: Centers image within the scroll view and configures image sizing and display. 3 Abstract: Centers image within the scroll view and configures image sizing and display.
4 Version: 1.3 modified by Ruslan Skorb on 8/24/14. 4 Version: 1.3 modified by Ruslan Skorb on 8/24/14.
5 5
@@ -47,7 +47,7 @@ @@ -47,7 +47,7 @@
47 47
48 #import <UIKit/UIKit.h> 48 #import <UIKit/UIKit.h>
49 49
50 -@interface RSKImageScrollView : UIScrollView 50 +@interface SDKImageScrollView : UIScrollView
51 51
52 @property (nonatomic, strong) UIImageView *zoomView; 52 @property (nonatomic, strong) UIImageView *zoomView;
53 @property (nonatomic, assign) BOOL aspectFill; 53 @property (nonatomic, assign) BOOL aspectFill;
1 // 1 //
2 -// HHPHAssetManager.h 2 +// SDKPHAssetManager.h
3 // CameraLibrary 3 // CameraLibrary
4 // 4 //
5 // Created by shmily on 16/3/16. 5 // Created by shmily on 16/3/16.
@@ -9,7 +9,7 @@ @@ -9,7 +9,7 @@
9 #import <UIKit/UIKit.h> 9 #import <UIKit/UIKit.h>
10 #import <Photos/Photos.h> 10 #import <Photos/Photos.h>
11 11
12 -@interface HHPHAssetManager : NSObject 12 +@interface SDKPHAssetManager : NSObject
13 13
14 - (void)tranformImage:(PHAsset *)asset finished:(void (^)(NSData *fullData,NSData *scaledData))finishBlock; 14 - (void)tranformImage:(PHAsset *)asset finished:(void (^)(NSData *fullData,NSData *scaledData))finishBlock;
15 15
1 // 1 //
2 -// RSKTouchView.h 2 +// SDKTouchView.h
3 // 3 //
4 // Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/ 4 // Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/
5 // 5 //
@@ -24,7 +24,7 @@ @@ -24,7 +24,7 @@
24 24
25 #import <UIKit/UIKit.h> 25 #import <UIKit/UIKit.h>
26 26
27 -@interface RSKTouchView : UIView 27 +@interface SDKTouchView : UIView
28 28
29 @property (weak, nonatomic) UIView *receiver; 29 @property (weak, nonatomic) UIView *receiver;
30 30
No preview for this file type
No preview for this file type