清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
//申请定位权限- (void) initLocation
{
if(nil ==_locationManager)
{
_locationManager = [[CLLocationManager alloc] init];
}
if([[[UIDevicecurrentDevice] systemVersion] floatValue] >= 8.0)
{
[_locationManager requestAlwaysAuthorization];
}
}
//初始化MapView
- (void) initMapView{
//构造MKMapView
_mapView =[[MKMapView alloc] initWithFrame:CGRectMake(0, 21,CGRectGetWidth(self.view.bounds), CGRectGetHeight(self.view.bounds))];
_mapView.delegate= self;
_mapView.showsUserLocation= YES;//显示定位图标
[_mapViewsetUserTrackingMode:MKUserTrackingModeFollow];//设置定位模式
//将mapview添加到Subview中
[self.viewaddSubview:_mapView];
}