当PageViewController导航样式设置为Horizontal时,我可以使UIPageControl工作,但是当我选择Vertical时,UIPageControl不会显示为水平或垂直. 我在AppDelegate中设置了UIPageControl的外观: - (BOOL)applicat
我在AppDelegate中设置了UIPageControl的外观:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization after application launch. UIPageControl *pageControl = [UIPageControl appearance]; pageControl.pageIndicatorTintColor = [UIColor lightGrayColor]; pageControl.currentPageIndicatorTintColor = [UIColor blackColor]; pageControl.backgroundColor = [UIColor whiteColor]; return YES; }
有没有办法让它出现在垂直位置?上面的代码在选择“水平”选项进行导航时有效,但在选择“垂直”时则无效.
如果我理解正确,你想要做的是使用垂直方向的UIPageViewController并垂直显示UIPageControl.我尝试这样做,但似乎无法直接访问与UIPageViewController相关的UIPageControl.但是,我找到了一个非常令人满意的问题解决方法.将UIScrollView与pagingEnabled一起使用,并在scrollView的委托方法中管理UIPageControl.要垂直显示UIPageControl,您可以使用
pageControl.transform = CGAffineTransformMakeRotation(M_PI / 2);
我做了一个示例应用程序来演示这种解决方法. Here是下载链接.考虑接受问题是否有助于您解决问题,谢谢.