2

我正在创建 UIPageViewController 并覆盖这些函数:

 - (NSInteger)presentationCountForPageViewController:(UIPageViewController *)pageViewController
 - (NSInteger)presentationIndexForPageViewController:(UIPageViewController *)pageViewController 

它在这里创建了一个 PageControl。

如何更改 PageContol 的样式?(默认为白色,但我需要深色)

4

1 回答 1

1

在 UIPageControl 类参考(http://developer.apple.com/library/ios/#documentation/uikit/reference/UIPageControl_Class/Reference/Reference.html)中,您可以找到您感兴趣的两个属性:pageIndicatorTintColorcurrentPageIndicatorTintColor

使用您想要的 UIColor 更改 UIPageControl 实例的这两个属性,例如 [UIColor blackColor] 用于深色等。

于 2013-05-20T07:27:32.640 回答