从弹出视图中退出后,我的后退/左手滑动手势消失了。我修复了:
override func viewDidLoad() {
super.viewDidLoad()
reenableSwipeBack()
}
func reenableSwipeBack() {
self.navigationController?.interactivePopGestureRecognizer?.isEnabled = true;
self.navigationController?.interactivePopGestureRecognizer?.delegate = nil;
}
我的滑动手势又回来但没有动画(显示here(Giphy))。如何恢复手势动画?