PhotoPreviewCell.h 521 B

1234567891011121314151617181920
  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. #import "RAPhotoDelegate.h"
  10. @interface PhotoPreviewCell : UICollectionViewCell <RAPhotoItemUIDelegate>
  11. @property (strong, nonatomic) IBOutlet UIScrollView *scrollView;
  12. @property (strong, nonatomic) IBOutlet UIView *scrollContentView;
  13. @property (nonatomic,strong) IBOutlet UIImageView *photoView;
  14. @property (nonatomic,strong) id<RAPhotoItemDelegate> model;
  15. @end