Memory management in Swift: Strong Reference & Retain Cycle
Swift uses ARC (Automatic Reference Counting) similar to Objective-C to track and manage application memory. In most cases, we don't need to bother about memory management by ourselves, the swift compiler will…