Google News
logo
Swift - Interview Questions
Is Swift ARC is compile time or runtime?
ARC is a compiler feature that allows Objective-C objects' memory to be managed automatically. ARC analyses the lifespan needs of objects and automatically inserts proper memory management calls for programs at compile time, so users don't have to remember when to use retain, release, and autorelease.
Advertisement