gpt4 book ai didi

ios - 在 iPhone 模拟器上测试 CoreLocation

转载 作者:IT王子 更新时间:2023-10-29 07:49:41 25 4
gpt4 key购买 nike

更新:从 iOS 5 和 Xcode 4.1 开始,现在可以在模拟器中测试位置甚至定义路线。参见 http://developer.apple.com了解更多详情。

遗留问题

有没有办法在 iPhone 模拟器上测试 CoreLocation?

我所需要的只是能够自己设置位置并让 CoreLocation 返回它。

最佳答案

这是我强制 CLLocationMager 返回的简单技巧Powell's Tech Bookstore 的地理坐标仅在模拟器上:

#ifdef TARGET_IPHONE_SIMULATOR 

@interface CLLocationManager (Simulator)
@end

@implementation CLLocationManager (Simulator)

-(void)startUpdatingLocation {
CLLocation *powellsTech = [[[CLLocation alloc] initWithLatitude:45.523450 longitude:-122.678897] autorelease];
[self.delegate locationManager:self
didUpdateToLocation:powellsTech
fromLocation:powellsTech];
}

@end

#endif // TARGET_IPHONE_SIMULATOR

关于ios - 在 iPhone 模拟器上测试 CoreLocation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/802156/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com