Byte

Byte类型定义如下:

typedef unsigned char UInt8;
typedef UInt8 Byte;

显然,这是通过C语言中的类型定义方法定义的, 它本质就是8bit无符号整数,与C语言中unsigned char是等价的。

Byte类型与NSData类型结合使用, 成为联系Objective-CC的桥梁。