I know how to load a different page than page 1 in a UIPageViewController. The problem is that my UIPageViewController is 150 pages long and when I try to load Page 100, it takes up to 8 sec to do the task. Any suggestion in how to speed up the process?
here is how I currently do it:
let savedPage = self.load(page: bookmarkPageNumber, pageViewController: self)!
self.setViewControllers([savedPage], direction: UIPageViewControllerNavigationDirection.forward, animated: false, completion: nil)