objective-c – ARC属性的新属性

前端之家收集整理的这篇文章主要介绍了objective-c – ARC属性的新属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经阅读了过渡到ARC注释,我仍然对我们应该/可以使用的属性属性有点混淆……我们可以使用弱代替赋值(具有如下优点:如果属性设置为nil它指向被释放的对象,强大的代替保留和代替复制的东西?我们仍然单独使用副本,或者我们需要与副本结合使用,例如属性(强,复制)..也许我需要练习并再次阅读文档,因为ARC对我来说不是很清楚……

解决方法

Clang ARC documentation就是这样说的:

copy implies __strong ownership,as well as the usual behavior of copy semantics on the setter.

关于自定义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中实现强或弱语义.

原文链接:https://www.f2er.com/c/114267.html

猜你在找的C&C++相关文章