I have page control but not navigating to other view. so please provide the solution.
pageControl=[[UIPageControl alloc] initWithFrame:CGRectMake(0,380,320,40)];
pageControl.backgroundColor=[UIColor clearColor];
pageControl.userInteractionEnabled =YES;
[pageControl addTarget:self action:@selector(pageAction:) forControlEvents:UIControlEventValueChanged];
[pageControl setHighlighted:YES];
-(void)pageAction:(UIPageControl*)control
{
[self displayNextPage];
[self displayPreviousPage];
}
Thank You, Madan Mohan.
Hope this helps:
-(void)pageAction:(UIPageControl*)control
{
int page = pageControl.currentPage;
CGRect frame = pagingScrollView.frame;
frame.origin.x = (myScrollView.frame.size.width * page);
[myScrollView scrollRectToVisible:frame animated:YES];
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With