Last active
May 15, 2017 18:13
-
-
Save cschep/ceb1fc46e2e3571a208eb8c770ab2e5a to your computer and use it in GitHub Desktop.
Revisions
-
cschep revised this gist
May 15, 2017 . 1 changed file with 15 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -17,4 +17,18 @@ func logViewHierarchy(view: UIView) -> String { 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) -
cschep revised this gist
May 15, 2017 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -6,8 +6,7 @@ func logViewHierarchy(view: UIView) -> String { 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 { -
cschep renamed this gist
May 15, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
cschep created this gist
May 15, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ 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))") result += "\n" viewsPrinted.insert(view) for subview in view.subviews { printViews(subview, level: level + 1) } } printViews(view, level: 0) return result }