[swift] UIView에서 subview 찾기
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 }
}
}
-
[swift] UIView에서 subview 찾기
-
[ios] 여러 버전의 Xcode 사용하기
-
[ios] Pod 특정 버전 설치하고 사용하기
-
macOS에 node, npm 설치하기 (homebrew)
-
[iOS] 시뮬레이터에 푸시 알림을 보내는 방법
-
[iOS] Xcode 불필요한 캐시 삭제하기
-
[swift] 실행시간 측정하기
-
[vim] vim 명령으로  문자 제거하기 (remove 65279 bomb)
-
[js] show/hide 이벤트 감시 (Observing show/hide event)
-
[swift] popToRoot 모달뷰, 네비게이션컨트롤러 한꺼번에 닫기
-
[swift] NotificationCenter 간단 예제
-
[kotlin] 코틀린 안드로이드 앱 버전/빌드 정보