Skip to content

Instantly share code, notes, and snippets.

@kenthumphries
Created February 1, 2019 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kenthumphries/928ab9823696957dec18c14caef4f0cc to your computer and use it in GitHub Desktop.
Save kenthumphries/928ab9823696957dec18c14caef4f0cc to your computer and use it in GitHub Desktop.
Print view hierarchy
extension UIViewController {
func recursiveDescription() -> String {
let description = view.perform(Selector(("recursiveDescription")))?.takeUnretainedValue() as! String
return description
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment