iOS 기본 (swift)
[iOS - swift] 화면 전체의 Interaction을 off, on 방법
jake-kim
2021. 1. 24. 15:50
Loading 시 화면전체에 interaction을 방지
// Interaction 방지
UIApplication.shared.beginIgnoringInteractionEvents()
// Interaction 다시 허용
UIApplication.shared.endIgnoringInteractionEvents()