PhotoPreviewCell.h 444 B

12345678910111213141516171819
  1. //
  2. // PhotoPreviewCell.h
  3. // RA Image
  4. //
  5. // Created by Jack on 2017/6/14.
  6. // Copyright © 2017年 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface PhotoPreviewCell : UICollectionViewCell
  10. @property (strong, nonatomic) IBOutlet UIScrollView *scrollView;
  11. @property (strong, nonatomic) IBOutlet UIView *scrollContentView;
  12. @property (nonatomic,strong) IBOutlet UIImageView *photoView;
  13. - (void)setPhoto:(UIImage *)image;
  14. @end