| 123456789101112131415161718192021222324 |
- //
- // RADetailLocationCell.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/2.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class RADetailLocationModel,RADetailLocationCell;
- @protocol RADetailLocationCellDelegate <NSObject>
- - (void)locationCell:(RADetailLocationCell *)cell didClickNavigation:(RADetailLocationModel *)model;
- @end
- @interface RADetailLocationCell : UITableViewCell
- @property (nonatomic,strong) RADetailLocationModel *model;
- @property (nonatomic,weak) id<RADetailLocationCellDelegate> delegate;
- @end
|