I am using Xcode 6 and implementing UIPageViewController for my app. I followed appcoda's tutorial, and everything works except the page indicators. This is because I cannot set the transition style of UIPageViewController to scroll.
Graphically, when I click on the PageViewController, the tab shows View Controller instead of Page View Controller like appcoda (See its image below)

This is what mine looks like:

And yes, my custom class is set to: UIPageViewController as it is in the tutorial.

Programmatically, I try to set the transition style with:
    self.pageViewController.transitionStyle = UIPageViewControllerTransitionStyle.Scroll
but it fails to build, telling me that it Could not find member transition style. 
One last weird thing I would like to point out is that if I just write self.pageViewController.transitionStyle, it builds successfully, but it still uses the Page Curl Transition.
Could anyone help me? I am using Swift, Xcode 6, and developing on the iOS 8 SDK.
 
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
    