UIPageControl的基本使用
//0.设置总页数
self.pageControl.numberOfPages = ImageCount;
//1.设置其它页的颜色
self.pageControl.pageIndicatorTintColor = [UIColor yellowColor];
//2.设置当前页的颜色
self.pageControl.currentPageIndicatorTintColor = [UIColorpurpleColor];
//3.设置当前页
self.pageControl.currentPage = 0;
//4.设置pageControl不能和用户交互"不能点击"
self.pageControl.enabled = NO;
pageControl的滚动,滚动到第几个点儿点儿,是currentPage决定的,currentPage是几,就滚动到第几个点儿点儿,举例如下:
/** 正在滚动中 */
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
CGFloat scrollViewW = scrollView.bounds.size.width;
// 1.计算当前滚动到第几页
NSInteger offset = (scrollView.contentOffset.x + scrollViewW * 0.5) / scrollViewW;
// 2.设置分页指示器当前是第几页
self.pageControl.currentPage = offset;
}
NSTimer的使用方法
// 第一参数是 定时器的间距时间, 第二参数表示给谁添加一个定时,第三个参数表示多长时间要执行一件什么事件,第四个参数可以给定时器方法传一个额外信息,第五个参数表示是否重复定时器
NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:1.0target:self selector:@selector(nextPage:) userInfo:@"xxxx"repeats:YES];
// 别的控件在执行时NSTimer会停止 需要把定时器添加到当前的运行循环中,并设置它为通用模式
[[NSRunLoop currentRunLoop] addTimer:_timerforMode:NSRunLoopCommonModes];