1. 程式人生 > >(iOS開發)允許右滑等操作

(iOS開發)允許右滑等操作

<pre name="code" class="objc">-(void)viewDidAppear:(BOOL)animated
{

//  這一句實現了允許右滑手勢
    self.navigationController.interactivePopGestureRecognizer.enabled=YES;


//    在自定義了返回按鈕的情況下還能實現右滑手勢
    self.navigationController.interactivePopGestureRecognizer.delegate = self;
}