我想要类似于 UIPageViewController 过渡的过渡,有没有可能实现呢。
SecondViewController* bvc = [[SecondViewController alloc] init];
[UIView transitionWithView:self.view.window
duration:1.0f
options:UIViewAnimationOptionTransitionCurlUp
animations:^{
[self.navigationController pushViewController:bvc animated:NO];
}
completion:NULL];
[self.navigationController pushViewController:bvc animated:YES];
好像现在我已经通过上面的代码实现了 pageCurl(up) 。但实际上想要像 pageTurn 这样的过渡。有什么办法可以做到这一点?