In MRC in iOS, when an object is set to nil,
myObject = nil;
It's told that memory leak will happen, as the myObject will not point to a memory address. The memory which it was pointing before will be lost. So we need to release the myObject and then only we can set nil. Can someone help me understanding, what will happen if we set nil to myObject in ARC? If we have something like this
myObject = SomeObject(value:10);
SomeObject myObject_another = myObject;
myObject = nil;
- Will ARC call
[myObject release]
when we setmyObject = nil
? - Will this lead to a memory leak?
- Will it call
[myObject_another release]
as well when we setmyObject = nil
?
Please help me understand the difference between ARC and non-ARC.
You can think that compiler inserts retains / releases every time when new reference created / destroyed(or reassigned). So it will look like:
Apple article: https://developer.apple.com/library/archive/releasenotes/ObjectiveC/RN-TransitioningToARC/Introduction/Introduction.html#//apple_ref/doc/uid/TP40011226