我想像在 iOS 7 中那样向后滑动。我对整个 iOS 开发仍然很陌生,这就是我目前正在使用的。
目前我有一个平移手势,可以检测用户是否向后滑动,然后它只是弹出导航控制器。
UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePan:)];
[self.view addGestureRecognizer:pan];
-(void)handlePan:(UIPanGestureRecognizer *)sender{
CGPoint tran = [recognizer translationInView:recognizer.view];
CGPoint vel = [recognizer velocityInView:recognizer.view];
if(vel.x > 500 && tran.x > 100){
[self.navigationController popViewControllerAnimated:YES];
}
}
我希望前一个视图跟随平移手势上的手指,而不是仅仅调用 pop 到 root。例如,