| 123456789101112131415161718192021222324252627282930313233 |
- //
- // RADetailMapCell.m
- // Apex And Drivers
- //
- // Created by Jack on 2018/9/4.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import "RADetailMapCell.h"
- #import <MapKit/MapKit.h>
- @interface RADetailMapCell ()
- @property (strong, nonatomic) IBOutlet UILabel *titleLabel;
- @property (strong, nonatomic) IBOutlet MKMapView *mapView;
- @property (strong, nonatomic) IBOutlet UILabel *valueLabel;
- @end
- @implementation RADetailMapCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|