I am using a UIPageViewController. I want to be able to drag in between views, which works, but currently I am able to drag the entire controller away from the screen, which I do not want.
See here:
I am launching this UIPageViewController from my home screen view controller as such:
let onboardingVC = OnboardingPageViewController()
onboardingVC.modalPresentationStyle = .overFullScreen
self.navigationController?.present(onboardingVC, animated: true)
In case this is causing the problem. I can share the PageViewController code if its needed.
If I use this answer: Disable UIPageViewController bounce
I get this:
As you can see during the scroll I can still sometimes view the background. Any thoughts on how to fix this?