DirTy™의 하루일과/DirTy™의 가당찮은iOS

[IOS] uinavigationcontroller swipe back disable 하기

DirTy™ 2016. 1. 15. 11:20

 

네비게이션 컨트롤러에서 push 후에 pop 할때 좌측 swipe로 화면 pop을 못하게 막는법이다.

까먹을것 같아 적어놓음.


if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {

        self.navigationController.interactivePopGestureRecognizer.enabled = NO;

    }