2
0

DNAsset.h 488 B

12345678910111213141516171819202122232425
  1. //
  2. // DNAsset.h
  3. // ImagePicker
  4. //
  5. // Created by DingXiao on 15/3/6.
  6. // Copyright (c) 2015年 Dennis. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class PHAsset;
  10. NS_ASSUME_NONNULL_BEGIN
  11. NS_CLASS_AVAILABLE_IOS(8.0) @interface DNAsset : NSObject
  12. @property (nonatomic, copy) NSString *assetIdentifier;
  13. @property (nonatomic, readonly) PHAsset *asset;
  14. @property (nonatomic, strong) UIImage *cacheImage;
  15. + (DNAsset *)assetWithPHAsset:(PHAsset *)asset;
  16. @end
  17. NS_ASSUME_NONNULL_END