BaseImage.h 635 B

123456789101112131415161718192021222324
  1. //
  2. // BaseImage.h
  3. // 乐销
  4. //
  5. // Created by 隋林栋 on 2017/1/9.
  6. // Copyright © 2017年 ping. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. //photo asset
  10. #import <AssetsLibrary/AssetsLibrary.h>
  11. //photo
  12. #import <Photos/Photos.h>
  13. @interface BaseImage : UIImage
  14. @property (nonatomic, strong) NSString *imageURL;
  15. @property (nonatomic, strong) PHAsset *asset;
  16. @property (nonatomic, assign) BOOL upHightQualityComplete;
  17. @property (nonatomic, assign) BOOL upComplete;
  18. @property (nonatomic, strong) NSString *identity;
  19. + (BaseImage *)imageWithCGImage:(CGImageRef)cgImage imageAsset:(PHAsset *)asset;
  20. @end