| 12345678910111213141516171819202122 |
- //
- // PhotoPreviewCell.h
- // RA Image
- //
- // Created by Jack on 2017/6/14.
- // Copyright © 2017年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "RAPhotoDelegate.h"
- @interface PhotoPreviewCell : UICollectionViewCell <RAPhotoItemUIDelegate>
- @property (strong, nonatomic) IBOutlet UIScrollView *scrollView;
- @property (strong, nonatomic) IBOutlet UIView *scrollContentView;
- @property (nonatomic,strong) IBOutlet UIImageView *photoView;
- @property (nonatomic,strong) id<RAPhotoItemDelegate> model;
- - (void)reset;
- @end
|