public override void ViewDidLoad()
        {
            base.ViewDidLoad();

            HogeDataSource dataSource = new HogeDataSource(this.JsonData, this.index);
            DataSource = dataSource;

            SetViewControllers(new[] { dataSource.Pages.ElementAt(0) }, UIPageViewControllerNavigationDirection.Forward, true, null);
        }
Exemple #2
0
        public override void ViewDidLoad()
        {
            base.ViewDidLoad();


            HogeDataSource dataSource = new HogeDataSource(this.JsonData, this.index);

            DataSource = dataSource;


            SetViewControllers(new[] { dataSource.Pages.ElementAt(0) }, UIPageViewControllerNavigationDirection.Forward, true, null);
        }