iOS: What is the difference in ARC and MRC when an object is set to nil?

753 Views Asked by At

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;
  1. Will ARC call [myObject release] when we set myObject = nil?
  2. Will this lead to a memory leak?
  3. Will it call [myObject_another release]as well when we set myObject = nil?

Please help me understand the difference between ARC and non-ARC.

1

There are 1 best solutions below

1
On

You can think that compiler inserts retains / releases every time when new reference created / destroyed(or reassigned). So it will look like:

myObject = SomeObject(value:10); /// Memory allocated and ref count increased. 
SomeObject myObject_another = myObject; /// ref count increased (now 2). 
myObject = nil; /// Reassigning -> ref count decreased. SomeObject still alive.
...
/// When myObject_another is destroyed or reassigned ref count will be decreased. It's 0 now -> memory deallocated. 
  1. Yes. Release called: ref count decreased. Memory is NOT deallocated.
  2. No memory leak here.
  3. No. Object is still alive and can be accessed via myObject_another.

Apple article: https://developer.apple.com/library/archive/releasenotes/ObjectiveC/RN-TransitioningToARC/Introduction/Introduction.html#//apple_ref/doc/uid/TP40011226