Skip to content

Instantly share code, notes, and snippets.

@uc-compass-bot
Created October 15, 2019 14:18
Show Gist options
  • Save uc-compass-bot/d3137019b1bd5563098b950e317ce6f6 to your computer and use it in GitHub Desktop.
Save uc-compass-bot/d3137019b1bd5563098b950e317ce6f6 to your computer and use it in GitHub Desktop.
Catch Retain Cycles In Navigation Controller Subclass 2
import UIKit
class NavigationController: UINavigationController {
deinit {
viewControllers.forEach { MemoryChecker.verifyDealloc(object: $0) }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment