You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ARC는 Auto Reference Counting의 약자로, 앱의 참조메모리를 자동으로 관리하는 역할을 합니다. 과거 Obj-c를 사용할때는 release, retain과 같은 코드를 수동으로 삽입해주었지만, ARC는 컴파일 타임에 자동으로 retain, release 등을 코드에 삽입하고, 런타임때 이들을 실행하여 reference count를 증감시킵니다. 만약 reference count가 0이 되면 deinit을 통해 메모리에서 해제합니다.
No description provided.
The text was updated successfully, but these errors were encountered: