摘要:
在iOS7中,如果使用了UINavigationController,那么系统自带的附加了一个从屏幕左边缘开始滑动可以实现pop的手势。但是,如果自定义了navigationItem的leftBarButtonItem,那么这个手势就会失效。解决方法有很多种 1.重新设置手势的delegateself.navigationController.interactivePopGestureRecognizer.delegate = (id)self; 2.当然你也可以自己响应这个手势的事件[self.navigationController.interactivePopGestureRecog.. 阅读全文