我正在尝试开发用于地图的setupcontroller,就像设置页面一样,用户可以在什么时间选择,或者在富有一定距离的用户处自动查看当前位置。 我试试这个:
CLLocationManager *locationManager = [[CLLocationManager alloc]init];
locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyNearestTenMeters;
[locationManager startUpdatingLocation];
但它一次工作。我给用户选择时间或他需要设置的距离以及他在那个位置时的丰富程度。然后应用程序向他显示当前位置在MAPView上不在UIlable上或在表格视图中。任何人都可以帮助我吗?
答案 0 :(得分:1)
你在打电话吗
[locationManager stopUpdatingLocation];
在您的代表中?
是你的
didFailWithError:
方法叫做?