This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Key for the preference file numbers: | |
const int decConst = 10; | |
const int hexConst = 16; | |
const int binConst = 2; | |
const int decASCII_Const = 9; | |
const int binASCII_Const = 1; | |
const int expressionConst = 3; | |
// Uncomment to enable debugger mode |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// NSLog Tokens | |
// ---------------------------------------------------- | |
// Symbol .........|...Displays | |
// %@ .............|...id | |
// %d,%D,%i .......|...long | |
// %u,%U ..........|...unsigned long | |
// %hi ............|...short | |
// %hu ............|...unsigned short | |
// %qi ............|...long long | |
// %qu ............|...unsigned long long |
NewerOlder