@property (nonatomic, retain)NSTimer* rotateTimer; //让视图自动切换
@property (nonatomic, retain)UIPageControl *myPageControl;
@property (nonatomic,strong) UIScrollView *scrollview;
创建NSTimer UIPageControl UIScrollView
viewDidLoad里面填写
self.view.backgroundColor=[UIColor groupTableViewBackgroundColor];
//初始化scrollView
UIScrollView *rotateScrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 280)];
//滚动范围
rotateScrollView.contentSize = CGSizeMake(CGRectGetWidth(self.view.frame)*3, 0);
//分页效果
rotateScrollView.pagingEnabled = YES;
//滚动条隐藏
rotateScrollView.showsHorizontalScrollIndicator = NO;
NSArray *Array=@[@"壁纸6.jpg",@"bizhi.jpg",@"nizhi7.jpg"];
//添加三个子视图 UILabel类型
for (int i = 0; i< 3; i++) {
UIImageView *img = [[UIImageView alloc] initWithFrame:CGRectMake(CGRectGetWidth(self.view.frame)*i, 0, self.view.frame.size.width,280)];
img.tag = 1000+i;
img.image = [UIImage imageNamed:Array[i]];
[rotateScrollView addSubview:img];
}
UIImageView *tempLabel = [rotateScrollView viewWithTag:1000];
//为滚动视图的右边添加一个视图,使得它和第一个视图一模一样。
UIImageView *image = [[UIImageView alloc] initWithFrame:CGRectMake(CGRectGetWidth(self.view.frame)*3, 0, CGRectGetWidth(self.view.frame), 280)];
image.backgroundColor = tempLabel.backgroundColor;
image.image=[UIImage imageNamed:@"壁纸6.jpg"];
[rotateScrollView addSubview:image];
[self.view addSubview:rotateScrollView];
rotateScrollView.tag = 1000;
self.myPageControl = [[UIPageControl alloc] initWithFrame:CGRectMake(self.view.frame.size.width-100, 230, 100, 50)];
self.myPageControl.numberOfPages = 3;
self.myPageControl.currentPage = 0;
self.myPageControl.numberOfPages = 3;//指定页面个数
self.myPageControl.currentPage = 0;//指定pagecontroll的值,默认选中的小白点(第一个)
//添加委托方法,当点击小白点就执行此方法
self.myPageControl.pageIndicatorTintColor = [UIColor whiteColor];// 设置非选中页的圆点颜色
self.myPageControl.currentPageIndicatorTintColor = [UIColor greenColor]; // 设置选中页的圆点颜色
[self.view addSubview:self.myPageControl];
//启动定时器
self.rotateTimer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(changeView) userInfo:nil repeats:YES];
//为滚动视图指定代理
rotateScrollView.delegate = self;
#pragma mark -- 滚动视图的代理方法
//开始拖拽的代理方法,在此方法中暂停定时器。
-(void)scrollViewWillBeginDragging:(UIScrollView *)scrollView{
NSLog(@"正在拖拽视图,所以需要将自动播放暂停掉");
//setFireDate:设置定时器在什么时间启动
//[NSDate distantFuture]:将来的某一时刻
[self.rotateTimer setFireDate:[NSDate distantFuture]];
}
//视图静止时(没有人在拖拽),开启定时器,让自动轮播
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{
//视图静止之后,过1.5秒在开启定时器
//[NSDate dateWithTimeInterval:1.5 sinceDate:[NSDate date]] 返回值为从现在时刻开始 再过1.5秒的时刻。
NSLog(@"开启定时器");
[self.rotateTimer setFireDate:[NSDate dateWithTimeInterval:1.5 sinceDate:[NSDate date]]];
}
//定时器的回调方法 切换界面
- (void)changeView{
//得到scrollView
UIScrollView *scrollView = [self.view viewWithTag:1000];
//通过改变contentOffset来切换滚动视图的子界面
float offset_X = scrollView.contentOffset.x;
//每次切换一个屏幕
offset_X += CGRectGetWidth(self.view.frame);
//说明要从最右边的多余视图开始滚动了,最右边的多余视图实际上就是第一个视图。所以偏移量需要更改为第一个视图的偏移量。
if (offset_X > CGRectGetWidth(self.view.frame)*3) {
scrollView.contentOffset = CGPointMake(0, 0);
}
//说明正在显示的就是最右边的多余视图,最右边的多余视图实际上就是第一个视图。所以pageControl的小白点需要在第一个视图的位置。
if (offset_X == CGRectGetWidth(self.view.frame)*3) {
self.myPageControl.currentPage = 0;
}else{
self.myPageControl.currentPage = offset_X/CGRectGetWidth(self.view.frame);
}
//得到最终的偏移量
CGPoint resultPoint = CGPointMake(offset_X, 0);
//切换视图时带动画效果
//最右边的多余视图实际上就是第一个视图,现在是要从第一个视图向第二个视图偏移,所以偏移量为一个屏幕宽度
if (offset_X >CGRectGetWidth(self.view.frame)*3) {
self.myPageControl.currentPage = 1;
[scrollView setContentOffset:CGPointMake(CGRectGetWidth(self.view.frame), 0) animated:YES];
}else{
[scrollView setContentOffset:resultPoint animated:YES];
}
}