Question

 NSMutableArray *foo = [NSMutableArray arrayWithCapacity:12];
 NSLog(@" foo is 0x%x", foo);  // worked in XCode 4.0 to return the hex address of this variable     

Now it gives compiler warning:

Conversion specifies type 'unsigned int' but the argument has type 'NSMutableArray'

How do I get output like "foo is 0x53a6d0" for example?

Était-ce utile?

La solution

I found the answer (with 30 characters) it's: %p

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top