Skip to content

Instantly share code, notes, and snippets.

@Atsumi3
Created March 29, 2023 07:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Atsumi3/178f1de4fa7dfa86813b8a553599ffaa to your computer and use it in GitHub Desktop.
Save Atsumi3/178f1de4fa7dfa86813b8a553599ffaa to your computer and use it in GitHub Desktop.
iOS Dump UIView child tree
import UIKit
extension UIView {
func dumpChildViewTree(_ indent: Int = 0) {
print("\(String(repeating: " ", count: indent)) \(className)")
subviews.forEach { $0.dumpChildViewTree(indent + 1) }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment