- (voID)vIEwDIDLoad { [super vIEwDIDLoad]; // locationManager update as location locationManager = [[CLLocationManager alloc] init]; locationManager.delegate = self; locationManager.desiredAccuracy = kCLLocationAccuracyBest; locationManager.distanceFilter = kCLdistanceFilterNone; [locationManager startUpdatingLocation]; CLLocation *location = [locationManager location]; // Configure the new event with information from the location CLLocationCoordinate2D coordinate = [location coordinate]; float longitude=coordinate.longitude; float latitude=coordinate.latitude; NSLog(@"dLongitude : %f",longitude); NSLog(@"dLatitude : %f",latitude); }
在控制台我不断得到这个:
dLongitude : 0.000000dLatitude : 0.000000
你能帮我吗
解决方法 一旦您需要使locationManager开始更新位置(您这样做)并实现管理员在检索位置时调用的委托方法,即可获取用户的位置 – 您无法立即从位置管理器获取位置.如果您不想跟踪用户位置 – 只需在第一次获取位置后停止更新该委托方法中的位置(如果您以后需要,则将其存储).
总结以上是内存溢出为你收集整理的ios – 获取用户的经度/纬度当viewDidLoad全部内容,希望文章能够帮你解决ios – 获取用户的经度/纬度当viewDidLoad所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)