如何在iOS中设置垂直页面指示器

时间:2016-11-15 13:30:07

标签: ios objective-c iphone swift

我已尝试使用以下代码在视图控制器中设置垂直页面指示符

self.pageController = [[UIPageViewController alloc] initWithTransitionStyle:UIPageViewControllerTransitionStyleScroll navigationOrientation:UIPageViewControllerNavigationOrientationVertical options:nil];

self.pageController.dataSource = self;
[[self.pageController view] setFrame:[[self view] bounds]];

我可以使用此代码垂直滚动,但是,如果我像这样设置navigationOrientation,则不会显示点:

navigationOrientation:UIPageViewControllerNavigationOrientationVertical

How to develop vertical page indicators as shown in the below image:

1 个答案:

答案 0 :(得分:0)

在您设置pageControl的代码中的某处,添加:

pageControl.transform = CGAffineTransformMakeRotation(M_PI / 2);