| 12345678910111213141516171819202122232425 |
- //
- // RADetailPhotoCell.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/9/4.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class RADetailPhotoModel,RADetailPhotoCell;
- @protocol RADetailPhotoCellDelegate <NSObject>
- - (void)photoCell:(RADetailPhotoCell *)cell didClickPhoto:(RADetailPhotoModel *)model;
- @end
- @interface RADetailPhotoCell : UITableViewCell
- @property (nonatomic,strong) RADetailPhotoModel *model;
- @property (nonatomic,weak) id<RADetailPhotoCellDelegate> delegate;
- @end
|