iOS7 滑动返回相关总结

//为了隐藏默认的返回按钮

self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:[UIView new]];

//开启手势操作

self.navigationController.interactivePopGestureRecognizer.delegate = nil;


你可能感兴趣的:(ios7,滑动返回)