プロパティで呼び出されるカスタムNSObject
クラスがあるとします。customClass
NSMutableArray *thisArray;
customClass *instance = [[customClass alloc] init]
ルート ビュー コントローラーでインスタンス化します。customClass 実装のどこかに thisArray が設定されています。
これで、ルート ビュー コントローラーにプロパティがありNSMutableArray (strong,nonatomic) *anotherArray
、anotherArray = customClass.thisArray
. その後、customClass を nil に設定anotherArray
した場合、メモリ内のオブジェクトを指しますか、それとも破棄する必要がありますか? オブジェクトとそのプロパティ メモリの残りの部分はどうでしょうか。