There are many questions on this topic and most of the answers are dated, so I am going to post this question.
Running Xcode 10.2.1 with Swift 5.1.
I have a UIPageViewController and I have set the Transition Style to Scroll in the Attributes Inspector.
However when I run the app in the simulator, Page Curl happens.
Is there a programmatic approach to make sure that the transition style is scroll?
Just add init code and initialize transition style programmatically.
required init?(coder aDecoder: NSCoder) {
super.init(transitionStyle: .scroll, navigationOrientation: .horizontal, options: nil)
}