swift programmation NSErrorPointer d'erreur etc

var data: NSDictionary = 
    NSJSONSerialization.JSONObjectWithData(responseData, options:NSJSONReadingOptions.AllowFragments, error: error) as NSDictionary;

Cette ligne de code me donne l'erreur

NSError is not convertable to NSErrorPointer.

Donc j'ai pensé alors à modifier le code pour:

var data: NSDictionary =
     NSJSONSerialization.JSONObjectWithData(responseData, options:NSJSONReadingOptions.AllowFragments, error: &error) as NSDictionary;

qui serait à son tour la NSError erreur dans un NSErrorPointer. Mais puis-je obtenir un nouveau message d'erreur et ne peut pas faire sens:

NSError! is not a subtype of '@|value ST4'
InformationsquelleAutor user3732493 | 2014-06-12