RADetailPhotoCell.h 531 B

12345678910111213141516171819202122232425
  1. //
  2. // RADetailPhotoCell.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/9/4.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class RADetailPhotoModel,RADetailPhotoCell;
  10. @protocol RADetailPhotoCellDelegate <NSObject>
  11. - (void)photoCell:(RADetailPhotoCell *)cell didClickPhoto:(RADetailPhotoModel *)model;
  12. @end
  13. @interface RADetailPhotoCell : UITableViewCell
  14. @property (nonatomic,strong) RADetailPhotoModel *model;
  15. @property (nonatomic,weak) id<RADetailPhotoCellDelegate> delegate;
  16. @end