Forked from kenthumphries/UIViewController+viewHierarchy.swift
Created
July 27, 2020 10:32
-
-
Save shakemno/760cec8fad956a3ff56e0f787b3fa9d7 to your computer and use it in GitHub Desktop.
Print view hierarchy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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