Objective-C Types : NSLog Formats
Objective-C Types : NSLog Formats Type Constant Examples NSLog Format char 'a', '\n' %c short int %hi, %hx, %ho unsigned short int %hu, %hx, %ho int 17, -99, 0xFFAE, 0878 %i, %x, %o unsigned int 17u, 101U, OXFFu %u, %x, %o long int 17L, -2998, OxffffL %li, %lx, %lo unsigned long int 17UL, -100ul, OxffeeUL %li, %lx, %lo long long int 0xe5e5e5e5LL, 500ll %lli, %llx, %llo unsigned long long int 17u..
2014. 5. 13.