Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save oliverbarreto/7970805 to your computer and use it in GitHub Desktop.

Select an option

Save oliverbarreto/7970805 to your computer and use it in GitHub Desktop.
settings the appearance of cerrtain Type of controlls in a cerrtain container instead of globally settings in every container
UIPageControl *pageControl = [UIPageControl appearanceWhenContainedIn:[MyViewController class], nil];
pageControl.pageIndicatorTintColor = [UIColor whiteColor];
pageControl.currentPageIndicatorTintColor = [UIColor redColor];
pageControl.backgroundColor = [UIColor blackColor];
UIPageControl *pageControl = [UIPageControl appearanceWhenContainedIn:[MyViewController class], nil];
pageControl.pageIndicatorTintColor = [UIColor whiteColor];
pageControl.currentPageIndicatorTintColor = [UIColor redColor];
pageControl.backgroundColor = [UIColor blackColor];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment