Guest User

Untitled

a guest
Aug 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. extension UIView {
  2. var allSubViews : [UIView] {
  3.  
  4. var array = [self.subviews].flatMap {$0}
  5.  
  6. array.forEach { array.append(contentsOf: $0.allSubViews) }
  7.  
  8. return array
  9. }
  10. }
Add Comment
Please, Sign In to add comment