【发布时间】:2011-06-27 06:44:55
【问题描述】:
提高iPhon的经纬度精度的可能步骤是什么。
因为有很多方法,通常我们使用
self.TlocationManager = [[[CLLocationManager alloc] init] autorelease];
self.TlocationManager.desiredAccuracy = kCLLocationAccuracyBest;
self.TlocationManager.distanceFilter = kCLLocationAccuracyBestForNavigation;
self.TlocationManager.delegate = self;
[self.TlocationManager startUpdatingLocation];
从这一点来看,我们需要实施哪些额外措施才能从 iPhone 获得最佳位置。
【问题讨论】:
标签: iphone ios4 location core-location