MJPhoto.h 670 B

12345678910111213141516171819202122232425
  1. //
  2. // MJPhoto.h
  3. //
  4. // Created by mj on 13-3-4.
  5. // Copyright (c) 2013年 itcast. All rights reserved.
  6. #import <UIKit/UIKit.h>
  7. #import <Foundation/Foundation.h>
  8. @interface MJPhoto : NSObject
  9. @property (nonatomic, strong) NSURL *url;
  10. @property (nonatomic, strong) UIImage *image; // 完整的图片
  11. @property (nonatomic, strong) UIImageView *srcImageView; // 来源view
  12. @property (nonatomic, strong, readonly) UIImage *placeholder;
  13. @property (nonatomic, strong, readonly) UIImage *capture;
  14. @property (nonatomic, assign) BOOL firstShow;
  15. // 是否已经保存到相册
  16. @property (nonatomic, assign) BOOL save;
  17. @property (nonatomic, assign) int index; // 索引
  18. @end