Struct 在iOS中的集合中使用

原创
2014/01/03 12:46
阅读数 3.4K
// 定义结构体
struct NoteGroup {
    CGRect rect;
    int page;
};
typedef struct NoteGroup NoteGroup;

// 存入集合
NoteGroup noteGroup = {rect, 3};
[array addObject:[NSValue valueWithBytes:&noteGroup objCType:@encode(NoteGroup)]];

// 取出
NoteGroup noteGroup;
NSValue *noteGroupValue = array[index];
[noteGroupValue getValue:&noteGroup];



展开阅读全文
加载中
点击引领话题📣 发布并加入讨论🔥
0 评论
2 收藏
0
分享
返回顶部
顶部