I have an UIPageViewController
that changes ViewControllers
with page flip animation on default
Is it possible to replace this animation with simple slide-in/slide-out one? Like Android ViewPager
does for example.
Here is my UIPageViewController
initialization:
var pageViewController = new UIPageViewController();
pageViewController.DataSource = new InfoViewControllerDataSource(this, _pageTitles);
pageViewController.SetViewControllers(new UIViewController[] { Pages[0] }, UIPageViewControllerNavigationDirection.Forward, false, null);
pageViewController.View.Frame = new CGRect(0, _toolbar.Frame.Bottom, this.View.Frame.Width, this.View.Frame.Size.Height);
AddChildViewController(this.pageViewController);
You can do it from the Interface builder. Change the Transition style property to Scroll. If you want to do it programmatically, transitionStyle is a read-only property. It can only be done by this method
pageViewController = new UIPageViewController(UIPageViewControllerTransitionStyle.Scroll, UIPageViewControllerNavigationOrientation.Horizontal)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With