我想知道我们可以在iPhone中以编程方式打开/关闭GPS吗?
答案 0 :(得分:12)
一个简单的例子:
//Init location manager
CLLocationManager* locationManager = [ [ CLLocationManager alloc] init];
locationManager.delegate = self; //we must implement the protocol
//Choose your accuracy level
//To turn on gps (if it isn't on already)
[locationManager startUpdatingLocation];
//To turn gps off (if no other apps are listening)
[locationManager stopUpdatingLocation];
还有更多,你可以监控或多或少的准确性,甚至使用wifi /手机信号塔。请首先阅读示例以获得最佳用途。
答案 1 :(得分:6)
在iOS 5之前,从第三方应用程序启动手机设置的行为并不一致,但在iOS5中,这种情况有所改善。
如果我们按照以下代码调用startUpdatingLoaction方法,并且如果位置服务已关闭,系统警报将会弹出,如果我们点击设置按钮,它将导航到手机设置。
CLLocationManager *locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
[locationManager startUpdatingLocation];
答案 2 :(得分:5)
如果您使用CLLocationManager
,那么GPS将会打开。
定位管理员将首先通过三角测量获取位置,然后转动GPS以获得更精确的修复。