Contents

Develop
2022.12.09 15:38

[swift] UIView에서 subview 찾기

Views 2028 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

UIView에서 하위의 subviews 찾아서 배열을 리턴


import UIKit


extension UIView

{

    func findSubViews<T: UIView>(classOf: T.Type) -> [T] {

        return recursiveSubviews.compactMap { $0 as? T }

    }

    

    var recursiveSubviews: [UIView] {

        return subviews + subviews.flatMap { $0.recursiveSubviews }

    }

}






?

List of Articles
No. Category Subject Author Date Views
1041 System/OS 맥에서 포트 확인하고 닫기 (mac) hooni 2022.03.22 1201
1040 Develop [maven] Mac OS에 메이븐(maven) 설치하기 file hooni 2015.01.21 1218
1039 Develop [ios] UIView 계층구조 hooni 2015.01.03 1219
1038 Develop [ubuntu] 우분투 18.04에 PHP5 설치하기 hooni 2020.11.14 1219
1037 Develop [ios] Objective-C Types & Storage Capacity hooni 2015.07.22 1255
1036 Develop GPL, AGPL, MPL,.. 한눈에 보는 오픈소스SW 라이선스 file hooni 2014.10.14 1260
1035 PPT [ppt] OCB기술개발팀 OJT 자료 file hooni 2015.11.13 1268
1034 Develop [ios] 코코아 프로그래밍의 네이밍 룰(명명 규칙) hooni 2017.05.11 1280
1033 Develop [coding] Find all anagrams in a string hooni 2017.06.27 1290
1032 Develop [js] Click button copy to clipboard hooni 2018.04.05 1290
1031 Develop [ios] NavigationController 에서 왼쪽(back) 버튼 후킹하기 hooni 2015.10.23 1295
1030 Develop [android] Calling activity function from separate class hooni 2016.11.15 1305
Board Pagination Prev 1 ... 7 8 9 10 11 12 13 14 15 16 ... 98 Next
/ 98