Problem Statement
Which tool in Xcode helps you identify memory leaks caused by dangling object references in Swift?
Explanation
The Memory Graph Debugger in Xcode visualizes object graphs and can show reference cycles or leaked objects. This is a key tool for debugging memory issues in Swift apps.
Practice Sets
This question appears in the following practice sets: