-3

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.

1 Answers1

1
NSLog(@"diccionario : %@", diccionario);

Should be the solution.

Naresh Reddy M
  • 1,096
  • 1
  • 10
  • 27