Created
February 1, 2019 13:50
-
-
Save kenthumphries/928ab9823696957dec18c14caef4f0cc 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