RADetailLocationCell.h 565 B

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