Reputation: 531
I have implemented UIPageViewController using this link
In storyboard, i have define page view controller navigation Vertical and transition type Page Curl.
When i swipe pages very fast, the page curl animation get freeze. But if i do swipe slowly, everything works fine.
Can someone please guide me what could be the reason?
Upvotes: 1
Views: 535
Reputation: 382
I was also facing the same problem. I resolved the issue by moving my code from 'viewDidLoad'
to 'viewDidAppear'
. Happy coding!
Upvotes: 3