Meta interview question

Open ended: what do you know about Memory Management in Objective C?

Interview Answer

Anonymous

13 Sept 2017

I talked about - MRC vs ARC, roughly when they were introduced, pros & cons of each, why to use one (arc) over the other(mrc) - How reference counting works in ARC (strong vs weak references) - How to manage pointers through / inside of blocks. Send weak pointers in, keep strong references inside the block for the duration of the block.

1