标签:
通过 __unsafe_unretained标示符标示指针类型的值,否则xcode会报以下错误(前提,你使用的是ARC模式):
ARC forbids Objective-C objects in struct
例如:
1 typedef struct { 2 3 __unsafe_unretained NSString *name; 4 } myStruct;
struct 如何存储指针类型的值
原文地址:http://www.cnblogs.com/zbblog/p/5521117.html