實現思路:
* 開啟一個定時器,把操作放入消息循環池.每隔一定時間,操作執行一次.
* 注意點: 程序啟動自動輪播,手動拖拽,讓定時器停止,停止拖拽重新開啟一個定時器.
//
// PBCollectionCell.h
// 無限滾動
//
// Created by 裴波波 on 16/3/30.
// Copyright ? 2016年 裴波波. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface PBCollectionCell : UICollectionViewCell
@property(nonatomic,strong)UIImage * img;
@end
//
// PBCollectionCell.m
// 無限滾動
//
// Created by 裴波波 on 16/3/30.
// Copyright ? 2016年 裴波波. All rights reserved.
//
#import "PBCollectionCell.h"
@interface PBCollectionCell ()
//不要忘記給collectionView的cell上設置圖片框,並拖線到cell分類中
@property (strong, nonatomic) IBOutlet UIImageView *imgView;
@end
@implementation PBCollectionCell
//重寫img的set方法來個cell進行賦值.(當調用cell.img = img的時候回調用set ..img的方法)
-(void)setImg:(UIImage *)img{
_img = img;
self.imgView.image = img;
}
@end
//
// ViewController.m
// 無限滾動
//
// Created by 裴波波 on 16/3/30.
// Copyright ? 2016年 裴波波. All rights reserved.
//
#import "ViewController.h"
#import "PBCollectionCell.h"
//定義宏圖片的個數
#define kPictureCount 3
@interface ViewController ()
@property (strong, nonatomic) IBOutlet UICollectionViewFlowLayout *flowLayout;
/**
* 圖片的索引
*/
@property(nonatomic,assign) NSInteger index;
//聲明定時器屬性方便在不同方法中訪問
@property(nonatomic,weak) NSTimer * timer;
@end
@implementation ViewController
-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
return kPictureCount;
}
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
static NSString * ID = @"cell";
PBCollectionCell * cell = [collectionView dequeueReusableCellWithReuseIdentifier:ID forIndexPath:indexPath];
//圖片索引只有下一站或者上一張,即+1,或者-1,為了切換圖片
//中間的cell的腳標是1,滾動後腳標是2或者0,湊成next值為+1或者-1(讓圖片索引+1或者-1來完成切換圖片),則
NSInteger next = indexPath.item - 1;
//為了不讓next越界,進行取余運算 ---------+next為了切換圖片
next = (self.index + kPictureCount + next) % kPictureCount;
NSString * imgName = [NSString stringWithFormat:@"%02ld",next + 1];
UIImage * img = [UIImage imageNamed:imgName];
cell.img = img;
return cell;
}
-(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{
//計算偏移的整數倍,偏移了0或者是2, -1是讓self.index圖片索引+1 或者 -1以切換圖片;
NSInteger offset = scrollView.contentOffset.x / scrollView.bounds.size.width - 1;
self.index = (offset + self.index + kPictureCount) % kPictureCount;
//本質就是改變cell的索引,再根據self.index來切換圖片,使用取余讓圖片索引不至於越界
//異步主隊列執行,為了不讓連續滾動停止後,圖片有閃動.
dispatch_async(dispatch_get_main_queue(), ^{
[self scrollToSecondCell];
});
}
//封裝設置當前顯示的cell為第二個cell的方法.
-(void)scrollToSecondCell{
NSIndexPath * idxPath = [NSIndexPath indexPathForItem:1 inSection:0];
[self.collectionView scrollToItemAtIndexPath:idxPath atScrollPosition:UICollectionViewScrollPositionLeft animated:NO];
}
- (void)viewDidLoad {
[super viewDidLoad];
self.flowLayout.itemSize = self.collectionView.bounds.size;
self.flowLayout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
self.flowLayout.minimumLineSpacing = 0;
self.collectionView.backgroundColor = [UIColor whiteColor];
self.collectionView.pagingEnabled = YES;
self.collectionView.bounces = NO;
self.collectionView.showsHorizontalScrollIndicator = NO;
[self scrollToSecondCell];
//開啟定時器使程序啟動就開始滾動
self.timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(nextPic) userInfo:nil repeats:YES];
NSRunLoop * runloop = [NSRunLoop currentRunLoop];
[runloop addTimer:self.timer forMode:NSRunLoopCommonModes];
}
@end
#pragma mark - 每隔一秒執行一次切換圖片
-(void)nextPic{
CGFloat w = 2 * self.collectionView.bounds.size.width;
[self.collectionView setContentOffset:CGPointMake(w, 0) animated:YES];
}
#pragma mark - 手動開始拖拽停止定時器
// 開始拖拽
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
// 1. 停止計時器
[self.timer invalidate];
}
#pragma mark - 停止拖拽開啟定時器
// 結束拖拽
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate {
// 重新開啟一個計時器
self.timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(nextPic) userInfo:nil repeats:YES];
// 把self.timer加入消息循環的模式修改一下
NSRunLoop *runloop = [NSRunLoop currentRunLoop];
[runloop addTimer:self.timer forMode:NSRunLoopCommonModes];
}
-(void)scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView{
NSInteger offset = scrollView.contentOffset.x / scrollView.bounds.size.width;
//第二個cell一直在中間所以,滾動停止後偏移倍數為0 或者 2 ==offset
offset = offset - 1;
//cell的腳標self.index +1 或者 -1;
self.index = (kPictureCount + offset + self.index) % kPictureCount;
//將操作放入主隊列異步執行,防止連續滾動停止後,圖片錯位後又變回正常顯示的圖片.
dispatch_async(dispatch_get_main_queue(), ^{
[self scrollToSecondCell];
});
}
1. cell滑動前或者每次滑動結束後都用代碼設置當前顯示的cell為第二個cell,在數據源第三個方法也就是返回cell的方法中實現圖片的切換用的是cell的indexPath.item-1 = -1或者 +1 再加上圖片本身的索引值self.index就會得出即將滾出的cell要顯示的是上一張圖片還是下一張圖片.
2. cell滾動結束後要計算當前cell顯示圖片的索引.是通過scrollview的偏移量contentoffset.x除以scrollview的寬度,計算出當前cell的圖片的索引保存.之後再滑動cell的時候,會調用數據源第三個方法,就會使用保存下來的self.index以及加上cell的indexPath.item-1來計算要顯示的圖片的索引.
3. 注意點: 消息循環模式,代碼滾動偏移觸發的方法與手動拖拽觸發的方法不同.
```