NSValue类

作者:追风剑情 发布于:2019-3-1 20:43 分类:Objective-C

像数组这样的Foundation集合只能存储对象,不能存储像int这样的基本数据类型。为了解决这个问题,需要使用NSNumber对象数组,而不是int数组。
在iOS程序开发时,还需要在集合中存储其他类型的数据。这些类型源于C语言的一种数据类型,它不是对象。
利用NSValue类可以将C语言的数据类型包装成对象,并可存储在Foundation提供的集合中

NSValue包装和展开方法
Typedef数据类型 描述 包装方法 展开方法
CGPoint x和y值组成的点 valueWithPoint: pointValue
CGSize 宽和主组成的尺寸 valueWithSize: sizeValue
CGRect 矩形包含原点和尺寸 valueWithRect: rectValue
NSRange 描述位置和大小的范围 valueWithRange: rangeValue

示例

  1. #import <Foundation/Foundation.h>
  2.  
  3. int main(int argc, const char * argv[]) {
  4. @autoreleasepool {
  5. CGPoint myPoint;
  6. NSValue *pointObj;
  7. NSMutableArray *touchPoints = [NSMutableArray array];
  8. myPoint.x = 100;
  9. myPoint.y = 200;
  10. // 包装(wrapping)
  11. pointObj = [NSValue valueWithPoint: myPoint];
  12. [touchPoints addObject: pointObj];
  13. // 取出并展开(unwrapping)
  14. myPoint = [[touchPoints lastObject] pointValue];
  15. }
  16. return 0;
  17. }



标签: Objective-C

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号