RADetailMapCell.m 693 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // RADetailMapCell.m
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/9/4.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import "RADetailMapCell.h"
  9. #import <MapKit/MapKit.h>
  10. @interface RADetailMapCell ()
  11. @property (strong, nonatomic) IBOutlet UILabel *titleLabel;
  12. @property (strong, nonatomic) IBOutlet MKMapView *mapView;
  13. @property (strong, nonatomic) IBOutlet UILabel *valueLabel;
  14. @end
  15. @implementation RADetailMapCell
  16. - (void)awakeFromNib {
  17. [super awakeFromNib];
  18. // Initialization code
  19. }
  20. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  21. [super setSelected:selected animated:animated];
  22. // Configure the view for the selected state
  23. }
  24. @end