質問

 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?

役に立ちましたか?

解決

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

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top