menu

开发进行时...

crazy coder

Avatar

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.