schnelle Programmierung NSErrorPointer Fehler etc
var data: NSDictionary =
NSJSONSerialization.JSONObjectWithData(responseData, options:NSJSONReadingOptions.AllowFragments, error: error) as NSDictionary;
Diese Codezeile gibt mir Fehler
NSError is not convertable to NSErrorPointer.
Also überlegte ich mir, den Code zu ändern:
var data: NSDictionary =
NSJSONSerialization.JSONObjectWithData(responseData, options:NSJSONReadingOptions.AllowFragments, error: &error) as NSDictionary;
Das würde den NSError-Fehler in einen NSErrorPointer verwandeln. Aber dann bekomme ich einen neuen Fehler und kann ihn nicht verstehen:
NSError! is not a subtype of '@|value ST4'