Memory Leak Detection
Automatic detection of leaked UIViewControllers and SwiftUI views with stack traces.
DebugSwift tracks view controller and view lifecycles. When an object survives after it should have been deallocated, it appears in the Leaks section with a retention path.

How to use it
- Navigate through your app normally, then pop back
- Check the Leaks tab for surviving view controllers
- Review the stack trace to find the retaining reference
- Disable with setup(disable: [.leaksDetector]) if needed

