UIscreen.main will be deprecated 대처하기
·
SwiftUI
Extension 사용하기extension UIWindow { static var current: UIWindow? { for scene in UIApplication.shared.connectedScenes { guard let windowScene = scene as? UIWindowScene else { continue } for window in windowScene.windows { if window.isKeyWindow { return window } } } return nil }}extension UIScreen { static var current: U..
ytw_developer
'uiscreen.main will be deprecated 대처하기' 태그의 글 목록