I read about manual & ARC memory management in Objective-C. In below points I am confused which is true about memory management in Objective-C?
Always nil out properties in dealloc under ARC and manual memory management.
Do not have to nil out properties in dealloc under ARC and manual memory management.
nil out properties in dealloc under ARC but not in manual memory management.
- nil out properties in dealloc under manual memory management but not in ARC.