gpt4 book ai didi

iOS:JSONObjectWithData

转载 作者:行者123 更新时间:2023-11-30 13:58:47 24 4
gpt4 key购买 nike

我将 Xcode 更新到版本 7 并尝试重用我的旧代码:

let downloadTask : NSURLSessionDownloadTask = sharedSession.downloadTaskWithURL(dataURL!, completionHandler: { (location: NSURL?, response: NSURLResponse?, error: NSError?) -> Void in

let dataObject = NSData(contentsOfURL: location!)
let dataDictionary : NSDictionary = NSJSONSerialization.JSONObjectWithData(dataObject!, options: nil, error: nil) as NSDictionary
})

在最后一行,我现在收到错误:调用中的额外参数“错误”

尽管在 NSJSONSerialization 类引用中该方法包含错误参数。

我在这方面还是个新手,如果有人可以向我解释发生了什么事以及如何解决这个问题,我将非常感激。

提前致谢。

最佳答案

试试这个:

let dataObject = NSData(contentsOfURL: location!)
do {
let dataDictionary : NSDictionary = try NSJSONSerialization.JSONObjectWithData(dataObject!, options: []) as NSDictionary
} catch _ {
dataObject = nil
}

关于iOS:JSONObjectWithData,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33254829/

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