| 123456789101112131415161718192021222324 |
- //
- // RAEditPhotoCell.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/4.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class RAEditPhotoModel,RAEditPhotoCell;
- @protocol RAEditPhotoCellDelegate <NSObject>
- - (void)photoCellWillOpenCameraOrShowPhoto:(RAEditPhotoCell *)cell;
- @end
- @interface RAEditPhotoCell : UITableViewCell
- @property (nonatomic,strong) RAEditPhotoModel *model;
- @property (nonatomic,weak) id<RAEditPhotoCellDelegate> delegate;
- @end
|