Notice
Recent Posts
Recent Comments
Link
관리 메뉴

김종권의 iOS 앱 개발 알아가기

[iOS - swift] 5. Memory Deep Dive - Memory Footprint 프로파일링 방법 (2) (Xcode Memory Debugger, Memory Graph, Memgraph) 본문

iOS 응용 (swift)

[iOS - swift] 5. Memory Deep Dive - Memory Footprint 프로파일링 방법 (2) (Xcode Memory Debugger, Memory Graph, Memgraph)

jake-kim 2023. 12. 12. 01:59

* 가장 기초) iOS 메모리 기초 개념 - virtual memory, dirty memory, clean memory, compressed memory, swapped memory 이해하기 포스팅 글

 

1. Memory Deep Dive - iOS 메모리 운영체제 기초 (가상 메모리, 페이징, clean memory, dirty memory, compressed memory)

2. Memory Deep Dive - Memory를 줄여야 하는 이유 (+ 앱 메모리 사용량 아는 방법)

3. Memory Deep Dive - Memory Footprint (페이징, Compressed 메모리)

4. Memory Deep Dive - Memory Footprint 프로파일링 방법 (1) (Allocation, Leaks, VM Tracker, Virtual memory trace)

5. Memory Deep Dive - Memory Footprint 프로파일링 방법 (2) (Xcode Memory Debugger, Memory Graph, Memgraph)

6. Memory Deep Dive - Memory Footprint 프로파일링 방법 (3) (vmmap, leaks, heap, malloc_history)

7. Memory Deep Dive - 이미지 로드 매커니즘, 이미지 핸들링 최적화 (UIGraphicsBeginImageContextWithOptions, UIGraphicsImageRenderer)

8. Memory Deep Dive - 이미지 리사이징, 이미지 다운 샘플링 (ImageIO, ImageSource)

9. Memory Deep Dive - 백그라운드에서 메모리 최적화하는 방법

Xcode Memory Debugger (memory graph)

  • Xcode > 앱 실행 > memory graph 클릭

  • 시각적으로 볼 수 있으므로 memory leak과 같은 문제를 쉽게 파악 가능

ex) 메모리 릭을 일으키는 코드 준비

class ViewController: UIViewController {
    override func viewDidAppear(_ animated: Bool) {
        super.viewDidAppear(animated)
        
        DispatchQueue.main.asyncAfter(deadline: .now() + 3) {
            let vc2 = VC2()
            vc2.someVC = self // <- retain cycle
            self.present(vc2, animated: true)
        }
    }
}

class VC2: UIViewController {
    private let button: UIButton = {
        let button = UIButton()
        button.setTitle("button", for: .normal)
        button.setTitleColor(.systemBlue, for: .normal)
        button.setTitleColor(.blue, for: .highlighted)
        button.translatesAutoresizingMaskIntoConstraints = false
        return button
    }()
    
    var someVC: UIViewController?
    
    override func viewDidLoad() {
        super.viewDidLoad()
        
        view.addSubview(button)
        NSLayoutConstraint.activate([
            button.centerYAnchor.constraint(equalTo: view.centerYAnchor),
            button.centerXAnchor.constraint(equalTo: view.centerXAnchor),
        ])
    }
}
  • memory graph 버튼을 누르면 보이는 처음 화면

  • Show the Debug navigator를 클릭

  • 왼쪽 창에서 VC2를 클릭
    • ViewController가 VC2를 참조하고 있고, 다시 VC2가 ViewController를 참조하고 있는것을 확인 가능

  • 의존 관계 뿐만이 아닌 우측 상단의 더보기 버튼을 누르면 해당 뷰에 어떤 뷰들이 할당되어 있는지, 메모리 관점에서 확인도 가능

Memgraph 파일

  • 위에서 살펴본 것이 바로 memgraph이며, 이 파일은 Xcode에서 외부로 export하여 terminal로 사용도 가능
  • 위 memory graph에서 export memory graph 버튼 클릭

 

이 memgraph 파일을 가지고 vmmap명령어를 통해 현재 메모리 상태 중 중요한 요소인 dirty size, swapped size 분석이 가능 (다음 포스팅 글에서 계속...)

 

* 참고

- https://developer.apple.com/videos/play/wwdc2018/416/

Comments