解决pageControl页面设置无效问题

时间:2021-10-31 00:18:04

废话不多说,先上代码

1.添加pageViewControl

 - (void)addPageControl {

     UIPageControl *pageControl = [[UIPageControl alloc]initWithFrame:CGRectMake(, , , )];
_pageControl = pageControl; //设置当前页面和费当前页面的pageControl的圆点颜色
pageControl.pageIndicatorTintColor = [UIColor greenColor];
pageControl.currentPageIndicatorTintColor = [UIColor blueColor]; // 1.设置pageControl单页的时候是否隐藏
pageControl.hidesForSinglePage = YES; // 2.设置pageControl显示的图片(KVC)
[pageControl setValue:[UIImage imageNamed:@"current"] forKeyPath:@"_currentPageImage"];
[pageControl setValue:[UIImage imageNamed:@"other"] forKeyPath:@"_pageImage"]; // 3.设置总页数(一定要在初始化UIPageControl对象时设置页数,不然不显示!!!!!!!!!!!!)
_pageControl.numberOfPages = self.imageNames.count; [self.view addSubview:pageControl]; }

注意: 一定要在初始化UIPageControl对象时设置页数,不然不显示!

2.添加定时器,定时滚动

   #pragma mark - 定时器的相关方法
- (void)startTimer { // 返回一个会自动执行任务的定时器
self.timer = [NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(nextPage:) userInfo:@"" repeats:YES]; [[NSRunLoop mainRunLoop] addTimer:self.timer forMode:NSRunLoopCommonModes];
} - (void)stopTimer { [self.timer invalidate]; } // 滚动到下一页
- (void)nextPage:(NSTimer *)timer{ // 计算下一页页码
NSInteger page = self.pageControl.currentPage + ; // 超过最后一页
if (page == self.imageNames.count) {
page = ;
} // 滚动到下一页
[_pageScrollView setContentOffset:CGPointMake(page * _pageScrollView.frame.size.width, ) animated:YES]; }

3.遵守 UIScrollViewDelegate, 监听滚动的状况, 以便通过crollView.contentOffset.x 来计算页码

 #pragma mark - UIScrollViewDelegate

 - (void)scrollViewDidScroll:(UIScrollView *)scrollView{

     // 计算页码
NSUInteger page = (int)(scrollView.contentOffset.x / scrollView.frame.size.width + 0.5); // 设置页码
_pageControl.currentPage = page; } // 用户即将开始拖拽scrollView,停止定时器 - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView { [self stopTimer]; } //用户已经停止拖拽scrollView,开启定时器 - (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate { [self startTimer]; }

总结:通过以上代码可以看出, 页码的控制是通过 scrollView.contentOffset.x来计算的, 充分借助了 UIScrollViewDelegate中的代理方法, 准确计算位移。

求关注

个人博客:http://www.cnblogs.com/loveDodream-zzt/

Demo:https://github.com/ZTV587/ZTCarouselAD (这个Demo是用XIB搭建的, 纯代码见本文)