我已经阅读了过渡到ARC注释,我仍然对我们应该/可以使用的属性属性有点混淆……我们可以使用弱代替赋值(具有如下优点:如果属性设置为nil它指向被释放的对象,强大的代替保留和代替复制的东西?我们仍然单独使用副本,或者我们需要与副本结合使用,例如属性(强,复制)..也许我需要练习并再次阅读文档,因为ARC对我来说不是很清楚……
解决方法
Clang ARC documentation就是这样说的:
copy implies __strong ownership,as well as the usual behavior of copy semantics on the setter.
A property’s specified ownership is preserved in its Metadata,but
otherwise the meaning is purely conventional unless the property is
synthesized.
因此,如果您实现自定义setter,那么您将负责在这些setter中实现强或弱语义.