Created
February 12, 2015 09:41
-
-
Save jkhowland/fdbd269af0df8052a6a9 to your computer and use it in GitHub Desktop.
UIPageControl Appearance
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UIPageControl *pageControl = [UIPageControl appearanceWhenContainedIn:[PresentationViewController class], nil]; | |
pageControl.pageIndicatorTintColor = [UIColor darkGrayColor]; | |
pageControl.currentPageIndicatorTintColor = [UIColor blackColor]; | |
pageControl.backgroundColor = [UIColor lightGrayColor]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment