MJPhoto.h 751 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 <Foundation/Foundation.h>
  7. #import <UIKit/UIKit.h>
  8. #import "JCHATChatModel.h"
  9. @interface MJPhoto : NSObject
  10. @property (nonatomic, strong) NSURL *url;
  11. @property (nonatomic, strong) UIImage *image; // 完整的图片
  12. @property (nonatomic, strong) JCHATChatModel * message;
  13. @property (nonatomic, strong) UIImageView *srcImageView; // 来源view
  14. @property (nonatomic, strong, readonly) UIImage *placeholder;
  15. @property (nonatomic, strong, readonly) UIImage *capture;
  16. @property (nonatomic, assign) BOOL firstShow;
  17. // 是否已经保存到相册
  18. @property (nonatomic, assign) BOOL save;
  19. @property (nonatomic, assign) int index; // 索引
  20. @end