Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shakemno/760cec8fad956a3ff56e0f787b3fa9d7 to your computer and use it in GitHub Desktop.
Save shakemno/760cec8fad956a3ff56e0f787b3fa9d7 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