NSInteger 是long的别名,占8个字节 long long 占8个字节 int32_t 是int的别名,占4个字节 int64_t 是long long的别名,占8个字节 使用注意⚠️ objective-c里,苹果的官方文档中总是推荐用NSInteger或者是NSUInteger,这样就不用考虑设备是32位还是64位了。 NSUInteger是无符号的,即没有负数,NSInteger是有...