iOS

Memory Management & ARC

ARC, strong/weak/unowned, retain cycles, capture lists, memory leaks, profiling

22 면접 질문·
Senior
1

What is ARC (Automatic Reference Counting) in iOS?

답변

ARC is an automatic memory management mechanism that counts references to objects. The compiler automatically inserts retain and release calls, eliminating manual memory management. When the reference count reaches zero, the object is deallocated. ARC significantly simplifies iOS programming by preventing common memory leaks.

2

What is a strong reference in ARC?

답변

A strong reference increments the reference counter of the referenced object. By default, all variables are strong references. The object remains in memory as long as at least one strong reference points to it. Using too many strong references can create retain cycles preventing deallocation.

3

What is a retain cycle?

답변

A retain cycle occurs when two or more objects hold strong references to each other. Neither can be deallocated because each prevents the other's reference count from reaching zero. This creates a memory leak. Retain cycles are prevented by using weak or unowned references in circular relationships.

4

What is the role of deinit in ARC memory management?

5

What is the difference between weak and unowned references?

+19 면접 질문

다음 면접을 위해 iOS을 마스터하세요

모든 질문, flashcards, 기술 테스트, 코드 리뷰 연습, 면접 시뮬레이터에 접근하세요.

무료로 시작하기