J'ai le code (dépouillé) :
CFDictionaryRef *currentListingRef;
//declare currentListingRef here
NSDictionary *currentListing;
currentListing = (NSDictionary *) currentListingRef;
Et ensuite j'obtiens l'erreur :
Coulée d'un pointeur de type non-Objective-C 'CFDictionaryRef *' (alias 'const struct __CFDictionary **') vers 'NSDictionary *' est interdit avec ARC
Qu'est-ce que je fais mal ? Comment puis-je convertir un CFDictionaryRef
à un NSDictionary
?