单项选择题
A.__strong B.__weak C.__unsafe_unretained D.__autoreleasing
A.属性列表 B.对象归档 C.SQLite和CoreData D.以上全部
A.retain表示持有特性,copy属性表示拷贝属性,都会建立一个相同的对象 B.assign是赋值属性,setter方法将传入参数赋值给实例变量 C.readonly是只读特性,只有getter方法,没有setter方法 D.readwrite是可读可写特性,需要生成getter方法和setter方法