How to manage Memory in Obj-C?
1697
05-Oct-2015
Updated on 20-Sep-2020
Anonymous User
05-Oct-2015Objective-C makes easy to manage memory like if you are creating objects using alloc, retain, or copy/mutablecopy then you need to manage your application's memory explicitly, in the other way Objective-C provide NSAutoreleasePool class that stores objects that are sent a release message to release objects from memory.