Last active
May 15, 2017 18:13
-
-
Save cschep/ceb1fc46e2e3571a208eb8c770ab2e5a to your computer and use it in GitHub Desktop.
This file contains 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
func logViewHierarchy(view: UIView) -> String { | |
var viewsPrinted = Set<UIView>() | |
var result: String = "" | |
func printViews(_ view: UIView, level: Int) { | |
guard !viewsPrinted.contains(view) else { return } | |
let padString = String(repeating: " | ", count: level) | |
result += ("\(padString) \(type(of: view))\n") | |
viewsPrinted.insert(view) | |
for subview in view.subviews { | |
printViews(subview, level: level + 1) | |
} | |
} | |
printViews(view, level: 0) | |
return result | |
} | |
let v = UIView() | |
for i in 0...10 { | |
let view = UIView() | |
if i % 2 == 0 { | |
view.addSubview(UIView()) | |
} | |
v.addSubview(view) | |
} | |
let result = logViewHierarchy(view: v) | |
print(result) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment