假设我有一个使用属性NSObject
调用的自定义类customClass
NSMutableArray *thisArray;
customClass *instance = [[customClass alloc] init]
我在我的根视图控制器中实例化。在 customClass 实现中的某个地方设置了 thisArray。
现在我的根视图控制器中有一个属性,我NSMutableArray (strong,nonatomic) *anotherArray
通过anotherArray = customClass.thisArray
. 如果我将 customClass 设置为 nil,anotherArray
仍然会指向内存中的一个对象,或者它是否应该被销毁?那么对象的其余部分及其属性内存呢?