iOS/iOS SeSAC 2기 TIL

iOS swift) 메모앱 swipe시 navigation pop 효과

Developer-Michelle 2022. 9. 4. 23:45

iOS swift) 메모앱 swipe시 navigation pop gesture recognizer

 

The gesture recognizer responsible for popping the top view controller off the navigation stack.

self.navigationController.interactivePopGestureRecognizer.delegate = self;

출처: https://stackoverflow.com/questions/34942571/how-to-enable-back-left-swipe-gesture-in-uinavigationcontroller-after-setting-le

 

How to enable back/left swipe gesture in UINavigationController after setting leftBarButtonItem?

I got the opposite issue from here. By default in iOS7, back swipe gesture of UINavigationController's stack could pop the presented ViewController. Now I just uniformed all the self.navigationItem.

stackoverflow.com

 

https://developer.apple.com/documentation/uikit/uinavigationcontroller/1621847-interactivepopgesturerecognizer

 

Apple Developer Documentation

 

developer.apple.com

참고로 시뮬레이터에서 swipe 효과 실행시키고 싶은 경우 기기의 맨 왼쪽 부분을 넘기면 됨