0
有什麼辦法來控制我的UIPageViewController中頁面轉動動畫的速度嗎?具體而言,當有人滑動速度非常快時,可以減慢動畫速度。慢速和中速滑動看起來不錯,但是當您快速滑動時,頁面轉動動畫看起來更像是水平滑動轉換,而不是實際的翻頁。UIPageView - 控制頁面轉動速度
self.pageController = [[UIPageViewController alloc]
initWithTransitionStyle:UIPageViewControllerTransitionStylePageCurl
navigationOrientation:UIPageViewControllerNavigationOrientationHorizontal
options: options];
謝謝!