简单类型 / 字符类型

char charA = 'A';
int intValue = charA;
//intValue is 65

char charB = ++charA;
//charB is "B"

NSLog(@"%i, %c", intValue, charB);