如果我有一个自定义的 backbuttom 项目,有什么办法可以让 ios7 向后滑动功能?对于功能,我的意思完全相同:在后视图变得可见时滑动手指并且能够向左滑动以不弹出。
提前致谢!
如果我有一个自定义的 backbuttom 项目,有什么办法可以让 ios7 向后滑动功能?对于功能,我的意思完全相同:在后视图变得可见时滑动手指并且能够向左滑动以不弹出。
提前致谢!
如果您有自定义后退按钮,我找到了一种添加此出色动画的好方法:
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]
initWithImage:img
style:UIBarButtonItemStylePlain
target:self
action:@selector(onBack:)];
self.navigationController.interactivePopGestureRecognizer.delegate = (id<UIGestureRecognizerDelegate>)self;