美文网首页
ARC forbids Objective-C objects

ARC forbids Objective-C objects

作者: 管乐_VICTOR | 来源:发表于2017-10-17 12:03 被阅读68次
struct objc_usertest {
    long age;
    NSString *name; // ARC
}USER_TEST;

ARC环境下,结构体使用objc对象的时候必须使用__unsafe_unretained

struct objc_usertest {
    long age;
    __unsafe_unretained NSString *name;
}USER_TEST;

相关文章

网友评论

      本文标题:ARC forbids Objective-C objects

      本文链接:https://www.haomeiwen.com/subject/kffduxtx.html