본문 바로가기
앱/iOS(Swift)

[Swift] 최상위 뷰 찾는법

by 리드맥 2023. 1. 7.

* UIApplication.shared.keyWindow?.rootViewController 

근데 key를 이용해서 접근하는 방식은 ios 13버전부터는 사용하지 못함

 

그래서 

guard let window = UIApplication.shared.windows.first(where: { $0.isKeyWindow }) else { return }
guard let tab = window.rootViewController as? MainTabController else { return }

window를 사용

댓글