无法从 iOS 模拟器获取位置

Posted

技术标签:

【中文标题】无法从 iOS 模拟器获取位置【英文标题】:Cannot get position from iOS simulator 【发布时间】:2015-05-24 14:52:28 【问题描述】:

我正在尝试通过简单的快速代码使用 ios 模拟器来获得位置。但是在调试会话中,没有调用回调函数。我将虚拟位置设置为 iOS 模拟器。

//  ViewController.swift
//  helloWorld
//
//  Created by  on 5/17/15.
//  Copyright (c) 2015   All rights reserved.
//

import UIKit
import CoreLocation

class ViewController: UIViewController, CLLocationManagerDelegate 

    var locMan: CLLocationManager!
    var lat: CLLocationDegrees!
    var lng: CLLocationDegrees!
    var hasPosData: Bool

    required init(coder aDecoder: NSCoder) 
        locMan  = CLLocationManager()
        lat = CLLocationDegrees()
        lng = CLLocationDegrees()
        hasPosData = false
        super.init(coder: aDecoder)
    

    func retreiveCurrentPos()
        locMan.delegate = self
        locMan.requestAlwaysAuthorization()

        // start using GPS function
        locMan.startUpdatingLocation()
    

    func saveResult2File()
        var contents: String

        let dirToSave = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true) as! Array<String>
        let file      = String(dirToSave[0]) + "pos.dat"
        if(hasPosData)
            contents = String(format:"lat: %f lng: %f", lat, lng)
        else
            contents = "Failed to retreive position data"
        

        contents.writeToFile(file, atomically: true, encoding: NSUTF8StringEncoding, error: nil)
    

    override func viewDidLoad() 
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        retreiveCurrentPos()
    

    override func didReceiveMemoryWarning() 
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    

    func locationManager(manager: CLLocationManager!, didUpdateToLocation newLocation: CLLocation!, fromLocation oldLocation: CLLocation!) 
        lat = newLocation.coordinate.latitude
        lng = newLocation.coordinate.longitude
        hasPosData = true
        saveResult2File()
    

    func locationManager(manager: CLLocationManager!, didFailWithError error: NSError!) 
        hasPosData = false
        saveResult2File()
    

【问题讨论】:

问题:你想得到的位置是……究竟是什么? 不要添加虚拟段落以使帖子更长,您应该更多地解释问题,并且可能会说一些关于 GPS 之类的... 【参考方案1】:

您需要在您的 iOS 模拟器中设置一个位置,默认设置为 none 会导致应用崩溃,因为您在使用前没有检查它。 您还需要在 pList NSLocationWhenInUseUsageDescription 中添加一个键,以防万一您忘记了。

列表

【讨论】:

在 iOS8 中,需要在 Info.plist 文件中添加 NSLocationWhenInUseUsageDescription 或 NSLocationAlwaysUsageDescription 键值对。 我在 iOS 模拟器中设置了位置。我将 NSLocationWhenInUseUsageDescription 键添加到 pList。但是没有调用回调函数。 我注意到你没有设置精度,也许这是问题尝试添加 locMan.desiredAccuracy = kCLLocationAccuracyBest,就在你将代理设置为 self 之后。让我知道它是否适合您。 感谢您的英勇建议。我可以得到纬度和经度。

以上是关于无法从 iOS 模拟器获取位置的主要内容,如果未能解决你的问题,请参考以下文章

无法从位置更新中更新 TextView

如何在模拟器中获取 ios 中的当前位置?

按位置从 iOS 照片库中获取照片

如何在ios中每n秒获取一次位置更新

无法在真正的 android 设备上获取当前位置

在后台模式和终止模式下获取位置更新 IOS