__NSCFDictionaryis a concrete subclass of both NSDictionary, and NSMutableDictionary. Handle this way:
-(void)handleSearchResult:(id)value {
NSDictionary* dict = value;
NSLog(@"value is: %@", dict);
}
I would skip SudzC and use CWXMLTranslatorfrom https://github.com/jayway/CWFoundation . This allows you to ignore most critical SOAP XML responses and translate them directly to the corresponding domain objects, rather than dictionaries and other placeholders.
source
share