我搜索了很长时间,才知道在UIPageViewController中除了卷曲和滚动以外,我们没有其他动画。
我需要使用交叉溶解而不是滚动或页面卷曲,但是除了滚动和页面卷曲之外,它不接受其他任何东西。
let vc = IntroPageViewController(transitionStyle: .scroll, navigationOrientation: .horizontal)
self.present(vc, animated: true, completion: nil)
如何使用.crossDissolve代替.scroll或.pageCurl。
我在IntroPageViewController中尝试过
let nxtVc = pendingViewControllers.first as! IntroSinglePageViewController
nxtVc.modalTransitionStyle = .crossDissolve
UIView.transition(with: self.view, duration:1,
options: UIViewAnimationOptions.transitionCrossDissolve,
animations: { }, completion: nil)
它起作用了,但是现在我同时拥有动画,滚动和crossDissolve。 如何在这里摆脱滚动动画。