로딩
요청 처리 중입니다...

SwiftUI 'windows' was deprecated in iOS 15.0: Use UIWindowScene.windows on a relevant window scene

 SwiftUI 'windows' was deprecated in iOS 15.0: Use UIWindowScene.windows on a relevant window scene

TopNaviView() .padding(.horizontal, 15) .padding(.bottom) .padding(.top, UIApplication.shared.windows.first?.safeAreaInsets.top) .background(NaviColor) .shadow(color: Color.black.opacity(0.05), radius: 5, x: 0, y: 5) Spacer() 'windows' was deprecated in iOS 15.0: Use UIWindowScene.windows on a relevant window scene instead iOS 15 부터는 사용하지 않는다는 이유로 동작은 되지만, 귀찮게 Warnning이 떠서 어떻게 해결할 수 있을까 해서 구글링을 해보았다. func getSafeAreaTop() -> CGFloat { let keyWindow = UIApplication.shared.connectedScenes .filter(...

# deprecated # swift # swiftui # UIWindowsScene # windows