iOS 属性之assign、copy、retain
参考自:http://blog.csdn.net/getchance/article/details/42213219
属性中这三个属性的区别:
assign: 简单赋值,不更改索引计数(Reference Counting)。
copy: 创建新对象 ,索引计数为1。跟原对象无关。
retain:指针拷贝,同一个对象,同时引用计数加1。
参考自:http://blog.csdn.net/getchance/article/details/42213219
属性中这三个属性的区别:
assign: 简单赋值,不更改索引计数(Reference Counting)。
copy: 创建新对象 ,索引计数为1。跟原对象无关。
retain:指针拷贝,同一个对象,同时引用计数加1。