向 NSArray NSDictionary 中添加数字、自定义结构体等

转载自:http://www.dreamingwish.com/dream-2011/add-to-nsarray-nsdictionary-digital-custom-structures-etc.html

添加数字,用nsnumber类:

//转换为NSNumber
+ (NSNumber *)numberWithInt:(int)value
- (id)initWithInt:(int)value
//转换回数字
- (int)intValue

添加结构体,用nsvalue类:

typedef struct {
	NSUInteger line;
	NSUInteger row;
} TileLocation;
//转换为NSValue
NSValue *value = [NSValue valueWithBytes:&tileLoc objCType:@encode(TileLocation)];
//转换回结构体
TileLocation loc;
[value getValue:&loc];

posted on 2012-09-18 10:30  yang3wei  阅读(267)  评论(0编辑  收藏  举报