Byte类型定义如下:
Byte
typedef unsigned char UInt8; typedef UInt8 Byte;
显然,这是通过C语言中的类型定义方法定义的, 它本质就是8bit无符号整数,与C语言中unsigned char是等价的。
8bit
unsigned char
Byte类型与NSData类型结合使用, 成为联系Objective-C和C的桥梁。