IOS:UIApplication Ignore touch event 화면상에서 터치 이벤트 발생시 View 에서 무시하는 방법 터치 이벤트를 무시해야 할 경우가 필요하면 아래의 메서드를 사용하면 된다. Touch Event 무시하기 [[UIApplication sharedApplication] beginIgnoringInteractionEvents]; 다시 Touch Event 받기 [[UIApplication sharedApplication] endIgnoringInteractionEvents]; Favorite site Developer apple: UIApplication class reference