【IOS】NSUInteger
时间:2015-12-02 12:34:22
收藏:0
阅读:263
NSUInteger
Used to describe an unsigned integer.
Declaration
OBJECTIVE-C
typedef unsigned long NSUInteger;
Discussion
When building 32-bit applications, NSUInteger is a 32-bit unsigned integer. A 64-bit application treats NSUInteger as a 64-bit unsigned integer
Import Statement
OBJECTIVE-C
@import ObjectiveC;
Availability
Available in iOS 2.0 and later.
原文:http://www.cnblogs.com/afluy/p/5012463.html
评论(0)