Ich habe diesen Code:mehrdeutige Verwendung von Index Xcode 7.1
var jsonResult = (try! NSJSONSerialization.JSONObjectWithData(data!, options: NSJSONReadingOptions.MutableContainers)) as! NSDictionary
var count = jsonResult["levels"]!.count as Int
for var i=0; i<count; ++i {
let obj = jsonResult["levels"]![i] as! NSDictionary
...
}
In der letzten Zeile ich diesen Fehler erhalte:
Ambiguous use of subscript
Wie kann ich dieses Problem lösen?
Dieser Code hat seit einiger Zeit funktioniert, aber mit dem Upgrade auf xcode 7.1 es brach und funktioniert nicht mehr.