Xcode ToolsMidMCQ
What is a memory leak and how do you find one with Instruments?
Test your knowledge:
Explanation & Code
Answer: A memory leak is memory that is allocated but never freed — usually from retain cycles. Over time it causes the app to use more and more memory and eventually crash.
How to find leaks with Instruments:
Xcode → Product → Profile(orCmd+I)- Choose Leaks template
- Use the app to trigger the suspected leak
- Instruments marks leaked objects in red
- Click a leak to see the allocation stack trace
Finding retain cycles with Memory Graph:
- Run the app in Xcode
- Click the Memory Graph button (3 circles icon in debug bar)
- Look for objects that shouldn't exist — e.g.
MyViewControllerthat was dismissed - Click the object to see what's retaining it
Code Example — common leak:
// ❌ Retain cycle — both objects keep each other alive
class ViewController: UIViewController {
var timer: Timer?
override func viewDidLoad() {
// Timer retains self strongly
timer = Timer.scheduledTimer(withTimeInterval: 1, repeats: true) { _ in
self.update() // strong capture
}
}
// timer never invalidated → ViewController never deallocated
}
// ✅ Fix
timer = Timer.scheduledTimer(withTimeInterval: 1, repeats: true) { [weak self] _ in
self?.update()
}
override func viewDidDisappear(_ animated: Bool) {
super.viewDidDisappear(animated)
timer?.invalidate()
}
Rate your understanding: