Hi there I'm trying to do an NSLog but what I want to see is what it's inside of my dictionary like this.
NSLog(@"diccionario", diccionario);
And this warning appears:
Data argument not used by format string
The diccionario object contains data from a server so like I said I want to print in the console the info that diccionario contains, because is not printing anything.
Thanks.