Compile NSLog on iOS without a warning
NSLog(@"%lu", (unsigned long)array.count);
for NSUInteger,
and
NSLog(@"%ld", (long)button.tag);
for NSInteger: no warnings in either 32 bit or 64 bit.
crazy coder
NSLog(@"%lu", (unsigned long)array.count);
for NSUInteger,
and
NSLog(@"%ld", (long)button.tag);
for NSInteger: no warnings in either 32 bit or 64 bit.