RAPhotoCell.h 449 B

123456789101112131415161718192021222324
  1. //
  2. // RAPhotoCell.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/10/30.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "RAPhotoCellDelegate.h"
  10. @class RAPhotoModel;
  11. @interface RAPhotoCell : UITableViewCell
  12. + (NSString *)reuseId;
  13. + (void)regist2TableView:(UITableView *)tableView;
  14. @property (nonatomic,weak) RAPhotoModel *model;
  15. @property (nonatomic,weak) id<RAPhotoCellDelegate> delegate;
  16. @end