天天看点

关于objc_property_attribute_t的value和name

常用attribute name value
nonatomic “N” “”
strong/retain “&” “”
weak “W” “”
readonly “R” “”
自定义的getter “G” “”
自定义的setter “S” “”
属性对应的实例变量Ivar “V” “”
属性的类型type “T” @”age”, eg”@\”NSString\”“

参考:开发者文档

继续阅读