Swift
ARC(Automatic Reference Counting) - What is ARC?
Swift 문서를 읽어보는 시간. 이번에는 ARC와 관련된 부분을 읽어본다. 문서는 여기 ⬇️ https://docs.swift.org/swift-book/LanguageGuide/AutomaticReferenceCounting.html Automatic Reference Counting — The Swift Programming Language (Swift 5.7) Automatic Reference Counting Swift uses Automatic Reference Counting (ARC) to track and manage your app’s memory usage. In most cases, this means that memory management “just works” in Swift,..