Notice
Recent Posts
Recent Comments
Link
관리 메뉴

김종권의 iOS 앱 개발 알아가기

[iOS - swift] 화면 전체의 Interaction을 off, on 방법 본문

iOS 기본 (swift)

[iOS - swift] 화면 전체의 Interaction을 off, on 방법

jake-kim 2021. 1. 24. 15:50

Loading 시 화면전체에 interaction을 방지

// Interaction 방지
UIApplication.shared.beginIgnoringInteractionEvents()

// Interaction 다시 허용
UIApplication.shared.endIgnoringInteractionEvents()

 

Comments