ios系统自带的左化返回上一级页面
时间:2015-12-28 16:55:18
收藏:0
阅读:307
首先遵循UIGestureRecognizerDelegate协议
self.navigationController.interactivePopGestureRecognizer.enabled = YES;
self.navigationController.interactivePopGestureRecognizer.delegate = self;
原文:http://www.cnblogs.com/xiaolingling1126/p/5083052.html
评论(0)