You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
444 B
28 lines
444 B
// |
|
// MapViewController.h |
|
// watch |
|
// |
|
// Created by xTT on 2017/7/3. |
|
// Copyright © 2017年 xTT. All rights reserved. |
|
// |
|
|
|
#import "baseViewController.h" |
|
#import <MapKit/MapKit.h> |
|
|
|
#import "WTListButton.h" |
|
|
|
@interface MapViewController : baseViewController |
|
|
|
@property(weak ,nonatomic) IBOutlet MKMapView *mapView; |
|
|
|
|
|
// 定位正在加载中的 gif 动态图 |
|
@property (strong, nonatomic) IBOutlet UIImageView *loadGitImageView; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@end
|
|
|