From this example I can add the pageControl, but the pageControl is at the bottom of the screen.
How can I make it in the bottom, but on top of the image?
I want the image to be full screen, and the page control on top of the image.
the example code is :
UIPageControl *pageControl = [UIPageControl appearance];
pageControl.pageIndicatorTintColor = [UIColor lightGrayColor];
pageControl.currentPageIndicatorTintColor = [UIColor blackColor];
pageControl.backgroundColor = [UIColor whiteColor];
i try to relocate the pageControl with the following code, but not success:
pageControl.frame = CGRectMake(0,500,320,30);