Swift Google Directions API JSON - EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0)

青春壹個敷衍的年華 提交于 2019-12-11 05:59:15

问题


I am trying to get directions data using Google API, but it's keep crashing. Here is my code:

let baseURLDirections = "https://maps.googleapis.com/maps/api/directions/json?"
var selectedRoute: Dictionary<NSObject, AnyObject>!
var overviewPolyline: Dictionary<NSObject, AnyObject>!
var originCoordinate: CLLocationCoordinate2D!
var destinationCoordinate: CLLocationCoordinate2D!
var originAddress: String!
var destinationAddress: String!

func getDirections(origin: String, destination: String, waypoints: Array<String>!, travelMode: AnyObject!, completionHandler: ((status: String, success: Bool) -> Void)) {

    var directionsURLString = baseURLDirections + "origin=" + origin + "&destination=" + destination

    directionsURLString = directionsURLString.stringByAddingPercentEncodingWithAllowedCharacters(.URLHostAllowedCharacterSet())!

    let directionsURL = NSURL(string: directionsURLString)
    let urlRequest: NSMutableURLRequest = NSMutableURLRequest(URL: directionsURL!)
    let session = NSURLSession.sharedSession()
    let task = session.dataTaskWithRequest(urlRequest) {
        (data, response, error) -> Void in

        do {
            let directionsData = NSData(contentsOfURL: directionsURL!)
            if let dictionary: Dictionary<NSObject, AnyObject> = try NSJSONSerialization.JSONObjectWithData(directionsData!, options: .MutableContainers) as? Dictionary<NSObject, AnyObject> {

                let status = dictionary["status"] as! String

                if status == "OK" {
                    self.selectedRoute = (dictionary["routes"] as! Array<Dictionary<NSObject, AnyObject>>)[0]

                    self.overviewPolyline = self.selectedRoute["overview_polyline"] as! Dictionary<NSObject, AnyObject>

                    let legs = self.selectedRoute["legs"] as! Array<Dictionary<NSObject, AnyObject>>

                    let startLocationDictionary = legs[0]["start_location"] as! Dictionary<NSObject, AnyObject>
                    self.originCoordinate = CLLocationCoordinate2DMake(startLocationDictionary["lat"] as! Double, startLocationDictionary["lng"] as! Double)

                    let endLocationDictionary = legs[legs.count - 1]["end_location"]as! Dictionary<NSObject, AnyObject>
                    self.destinationCoordinate = CLLocationCoordinate2DMake(endLocationDictionary["lat"] as! Double, endLocationDictionary["lng"] as! Double)

                    self.originAddress = legs[0]["start_address"]as! String
                    self.destinationAddress = legs[legs.count - 1]["end_address"]as! String

                    self.calculateTotalDistanceAndDuration()

                    completionHandler(status: status, success: true)
                }
                else {
                    completionHandler(status: status, success: false)
                }
            }
        } catch let error as NSError {
            print(error)
            completionHandler(status: "", success: false)
        }
    }

    task.resume()
}

It says "EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0)" on

self.overviewPolyline = self.selectedRoute["overview_polyline"] as! Dictionary<NSObject, AnyObject>

and even when I delete all of the code inside

if let dictionary: Dictionary<NSObject, AnyObject> = try NSJSONSerialization.JSONObjectWithData(directionsData!, options: .MutableContainers) as? Dictionary<NSObject, AnyObject> {

I am getting EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0). How do I solve this?


回答1:


It worked when I changed

directionsURLString = directionsURLString.stringByAddingPercentEncodingWithAllowedCharacters(.UR>LHostAllowedCharacterSet())!

to

directionsURLString = directionsURLString.stringByAddingPercentEncodingWithAllowedCharacters(.URLQueryAllowedCharacterSet())!

Thanks for pointing me in the right direction ! In swift 3.0 it translates into :

SearchString = SearchString.addingPercentEncoding(withAllowedCharacters: CharacterSet.urlQueryAllowed)!

Here is another useful string modifier for URL preparation (removes accents and so on but not weird character like "ø") :

SearchString = SearchString.folding(options: .diacriticInsensitive, locale: .current)



回答2:


It worked when I changed

directionsURLString = directionsURLString.stringByAddingPercentEncodingWithAllowedCharacters(.URLHostAllowedCharacterSet())!

to

directionsURLString = directionsURLString.stringByAddingPercentEncodingWithAllowedCharacters(.URLQueryAllowedCharacterSet())!


来源:https://stackoverflow.com/questions/38799052/swift-google-directions-api-json-exc-bad-instruction-code-exc-i386-invop-sub

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!