/ / iOS10にNSJSONSerializationを調整する必要があります - swift、ios10

NSJSONSerializationをiOS10に調整する必要があります - swift、ios10

iOS10ユーザーにアップグレードした後に開始私のアプリのクラッシュについて不平を言った。 私はシミュレータ上でiOS10を使ってテストしています。実際には、「NSMutableArray」にタイプ「__NSArrayI」の値をキャストできませんでした。ここに私のコードは、助けてください:

import Foundation

protocol getAllListsModel: class {
func listsDownloadingComplete(downloadedLists: [ContactsList])
}

class ListsDownloader: NSObject, NSURLSessionDataDelegate{

//properties

weak var delegate: getAllListsModel!

var data : NSMutableData = NSMutableData()

func downloadLists() {

let urlPath: String = "http://..."
let url: NSURL = NSURL(string: urlPath)!
var session: NSURLSession!
let configuration =     NSURLSessionConfiguration.ephemeralSessionConfiguration()     //defaultSessionConfiguration()


session = NSURLSession(configuration: configuration, delegate: self, delegateQueue: nil)

let task = session.dataTaskWithURL(url)

task.resume()

}

func URLSession(session: NSURLSession, dataTask: NSURLSessionDataTask, didReceiveData data: NSData) {
self.data.appendData(data);
}

func URLSession(session: NSURLSession, task: NSURLSessionTask, didCompleteWithError error: NSError?) {
if error != nil {
print("Failed to download data")
}else {
self.parseJSON()
print("Lists downloaded")
}

}
func parseJSON() {

var jsonResult: NSMutableArray = NSMutableArray()

do{
try jsonResult =  NSJSONSerialization.JSONObjectWithData(self.data, options:NSJSONReadingOptions.AllowFragments) as! NSMutableArray

} catch let error as NSError {
print(error)
}

var jsonElement: NSDictionary = NSDictionary()
var downloadedLists: [ContactsList] = []

for i in 0...jsonResult.count-1 {

jsonElement = jsonResult[i] as! NSDictionary

let tempContactsList = ContactsList()

//the following insures none of the JsonElement values are nil through optional binding
let id = jsonElement["id"] as? String
let name = jsonElement["name"] as? String
let pin = jsonElement["pin"] as? String
let lastUpdated = jsonElement["created"] as? String
let listAdminDeviceID = jsonElement["admin"] as? String

tempContactsList.id = id
tempContactsList.name = name
tempContactsList.pin = pin
tempContactsList.lastUpdated = lastUpdated
tempContactsList.listAdmin = listAdminDeviceID

downloadedLists.append(tempContactsList)

}

dispatch_async(dispatch_get_main_queue(), { () -> Void in

self.delegate.listsDownloadingComplete(downloadedLists)

})
}
}

回答:

回答№1は2

iOS 9でも、保証はありませんでした NSJSONSerialization.JSONObjectWithData(_:options:) 可変オブジェクトを返します。あなたは指定したはずです NSJSONReadingOptions.MutableContainers.

あなたのコードでは、あなたは変更していません jsonResultつまり、宣言する必要はありません。 NSMutableArray。ただ置き換える NSMutableArrayNSArray、次に指定する必要はありません NSJSONReadingOptions.MutableContainers.

しかし、vadianが示唆しているように、 NSArray または NSDictionary。このコードはiOS 9と10の両方で動作するはずです。

func parseJSON() {

var jsonResult: [[String: AnyObject]] = [] //<- use Swift type

do{
try jsonResult =  NSJSONSerialization.JSONObjectWithData(self.data, options: []) as! [[String: AnyObject]] //<- convert to Swift type, no need to specify options

} catch let error as NSError {
print(error)
}

var downloadedLists: [ContactsList] = []

for jsonElement in jsonResult { //<- your for-in usage can be simplified

let tempContactsList = ContactsList()

//the following insures none of the JsonElement values are nil through optional binding
let id = jsonElement["id"] as? String
let name = jsonElement["name"] as? String
let pin = jsonElement["pin"] as? String
let lastUpdated = jsonElement["created"] as? String
let listAdminDeviceID = jsonElement["admin"] as? String

tempContactsList.id = id
tempContactsList.name = name
tempContactsList.pin = pin
tempContactsList.lastUpdated = lastUpdated
tempContactsList.listAdmin = listAdminDeviceID

downloadedLists.append(tempContactsList)

}

dispatch_async(dispatch_get_main_queue(), { () -> Void in

self.delegate.listsDownloadingComplete(downloadedLists)

})
}

これを試して、iOS 10デバイスで確認してください。

as! あなたのサーバが誤動作しているときに変換が異常にクラッシュするかもしれませんが、それは別の問題かもしれません。