fatal error: unexpectedly found nil while unwrappi

2020-04-23 05:49发布

I've tried to build up a document-based Cocoa app and when I tried to parse JSON in readFromData: ofType: error: method, I got an error: fatal error: unexpectedly found nil while unwrapping an Optional value. The actual line that caused the error is the following:

override func readFromData(data: NSData?, ofType typeName: String?, error outError: NSErrorPointer) -> Bool {
    var error: NSErrorPointer!
    var loadedDictionary = NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions.AllowFragments, error: error) as? NSDictionary // this causes an error
    return true
}

It looks like the NSJSONSerialization.JSONObjectWithData() method caused the error, but why did it issue it?

I changed options: argument to either nil or 0, and also changed error: argument to nil, but nothing solved the issue.

I also ensured that data is not nil.

So what am I missing? I think the JSON method tried to force unwrapping within it, but how can I know that? And how can I escape the fatal error and have my app run properly?

I use Xcode6-beta 3 on Yosemite beta3.

3条回答
家丑人穷心不美
2楼-- · 2020-04-23 06:18

Most likely the problem is that you have data that isn't actually JSON, so the deserialisation will return nil, or the data is an array, and converting it to a dictionary will obviously crash.

You don't seem to understand some of the basics. What do you think AllowFragments is going to achieve? And why did you change error to nil? Do you understand what the error variable is there for? It's there to tell you what errors the JSON parser found. By setting the variable to nil, you prevent it from helping you.

查看更多
欢心
3楼-- · 2020-04-23 06:26
  • In this case outError is supplied as an argument so you should use it (I overlooked that).
  • Looks like this function's purpose is to check whether data is valid JSON.

Then your funciton should be:

override func readFromData(data: NSData?, ofType typeName: String?, error outError: NSErrorPointer) -> Bool {
    if let loadedDictionary = NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions.AllowFragments, error: outError) as? NSDictionary {
       return true
    } else {
       return false
    }
}

Now this function:

  • write error to where the caller specified in ourError should error occur
  • return wheter the data is valid JSON as NSDictionary

FYI I happened to write a JSON handler, too.

Which includes NSJSONSerialization.JSONObjectWithData.

查看更多
老娘就宠你
4楼-- · 2020-04-23 06:33

If the data does not contain a valid JSON object, the JSONObjectWithData function will return a nil, so you need to do a conditional unwrapping as follows:

if let dict = NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions.MutableContainers, error: jsonError) as? NSDictionary {
    println("Dictionary: \(dict)")
} else {
   println("nil")
   let resultString = NSString(data: data, encoding: NSUTF8StringEncoding)
   println("Flawed JSON String: \(resultString)")
}

I hope it helps..... e

查看更多
登录 后发表回答