| 123456789101112131415161718192021222324 |
- //
- // RAPhotoCell.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/10/30.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "RAPhotoCellDelegate.h"
- @class RAPhotoModel;
- @interface RAPhotoCell : UITableViewCell
- + (NSString *)reuseId;
- + (void)regist2TableView:(UITableView *)tableView;
- @property (nonatomic,weak) RAPhotoModel *model;
- @property (nonatomic,weak) id<RAPhotoCellDelegate> delegate;
- @end
|