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