圖片輪播

#import "ViewController.h"

#import "MineView.h"

@interface ViewController ()

@end

@implementation?

ViewController{?

?? NSArray*_imageList;

}

- (void)viewDidLoad {

[super viewDidLoad];

[self loadData];

[self setupUI];

}

- (void)loadData {

NSMutableArray *arrayM = [NSMutableArray array];

for (NSInteger i = 0; i < 5; i++) {

NSString *imageName = [NSString stringWithFormat:@"Home_Scroll_%02zd.jpg",i+1];

NSString *path = [[NSBundle mainBundle]pathForResource:imageName ofType:nil];

UIImage *image = [UIImage imageWithContentsOfFile:path];

//相對(duì)于UIImage imageNamed: 沒有緩存

[arrayM addObject:image];

}

_imageList = arrayM.copy;

}

- (void)setupUI{

MineView *mineView = [[MineView alloc]initWithFrame:CGRectMake(0, 0,self.view.frame.size.width, 120)];

self.view.backgroundColor = [UIColor whiteColor];

mineView.imageList = _imageList;

self.tableView.tableHeaderView = mineView;

}

- (void)didReceiveMemoryWarning {

[super didReceiveMemoryWarning];

// Dispose of any resources that can be recreated.

}

@end



MineView:


#import@interface MineView : UIView

@property (nonatomic,strong) NSArray *imageList;

@end





#import "MineView.h"

#import "Masonry.h"

#import "MineFlowLayout.h"

#import "MineCollectionViewCell.h"

static NSString *cellID = @"cellID";

@interface MineView ()

@property (nonatomic,weak) UICollectionView *collectionView;

@property (nonatomic,weak) UIPageControl *pageControl;

@property (nonatomic,strong) NSTimer *timer;

@end

@implementation MineView

- (instancetype)initWithFrame:(CGRect)frame {

if (self = [super initWithFrame:frame]) {

[self setupUI];

}

return self;

}

//view從父控件移除的時(shí)候 會(huì)調(diào)用此方法

- (void)removeFromSuperview {

[super removeFromSuperview];

//停止定時(shí)器

[self.timer invalidate];

}

- (void)setImageList:(NSArray *)imageList {

_imageList = imageList;

//立即 布局子控件 因?yàn)?數(shù)據(jù)有了cell 還沒有

//先調(diào)用 此方法 對(duì)子控件進(jìn)行強(qiáng)制布局

[self layoutIfNeeded];

//拿到數(shù)據(jù)后就滾動(dòng)到第五個(gè) 是為了避免 剛開始向左滾動(dòng) 無(wú)法滾動(dòng)的問(wèn)題

[self.collectionView scrollToItemAtIndexPath:[NSIndexPath indexPathForItem:_imageList.count inSection:0] atScrollPosition:UICollectionViewScrollPositionLeft animated:NO];

self.pageControl.numberOfPages = imageList.count;

}

- (void)setupUI{

MineFlowLayout *flowLayout = [[MineFlowLayout alloc]init];

UICollectionView *collectionView = [[UICollectionView alloc]initWithFrame:CGRectZero collectionViewLayout:flowLayout];

self.collectionView = collectionView;

collectionView.dataSource = self;

collectionView.delegate = self;

[collectionView registerClass:[MineCollectionViewCell class] forCellWithReuseIdentifier:cellID];

collectionView.bounces = NO;

collectionView.showsHorizontalScrollIndicator = NO;

collectionView.pagingEnabled = YES;

[self addSubview:collectionView];

[collectionView mas_makeConstraints:^(MASConstraintMaker *make) {

make.top.left.right.offset(0);

make.bottom.offset(-5);

}];

UIPageControl *pageControl = [[UIPageControl alloc]init];

self.pageControl = pageControl;

pageControl.pageIndicatorTintColor = [UIColor colorWithWhite:0.8 alpha:1];

pageControl.currentPageIndicatorTintColor = [UIColor colorWithWhite:0.2 alpha:1];

//? ? pageControl.numberOfPages = 5;

//拿到數(shù)據(jù)后? 對(duì)numberOfPage賦值

[self addSubview:pageControl];

[pageControl mas_makeConstraints:^(MASConstraintMaker *make) {

make.centerX.offset(0);

make.bottom.offset(15);

}];

NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(playPicture) userInfo:nil repeats:YES];

self.timer = timer;

//scheduledTimerWithTimeInterval 以默認(rèn)模式添加到運(yùn)行循環(huán)里

//只是創(chuàng)建 一個(gè)控制器,不把它添加到運(yùn)行循環(huán)

//? ? NSTimer *timer = NSTimer timerWithTimeInterval:<#(NSTimeInterval)#> target:<#(nonnull id)#> selector:<#(nonnull SEL)#> userInfo:<#(nullable id)#> repeats:<#(BOOL)#>

//默認(rèn)模式不能同時(shí)處理界面的變化和定時(shí)器

[[NSRunLoop currentRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];

}

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

//拖拽的時(shí)候 定時(shí)器暫停

self.timer.fireDate = [NSDate distantFuture];

}

- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate {

//重新開發(fā)定時(shí)器

self.timer.fireDate = [NSDate dateWithTimeIntervalSinceNow:2];

}

//加入 自動(dòng)播放后 會(huì)有bug? 動(dòng)畫播放時(shí)采用動(dòng)畫的效果 不會(huì)調(diào)用scrollViewDidEndDecelerating

- (void)playPicture {

CGPoint offset = self.collectionView.contentOffset;

offset.x += self.collectionView.frame.size.width;

//修改后的偏移量 重新賦值給collectionView

//? ? self.collectionView.contentOffset = offset;

[self.collectionView setContentOffset:offset animated:YES];

//0.25s

}

//當(dāng)停止動(dòng)畫滾動(dòng) 會(huì)調(diào)用此方法

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

//頁(yè)碼就是第幾個(gè)cell? 先拿到scrollView滾動(dòng)了幾個(gè)屏幕的寬度

NSInteger page = scrollView.contentOffset.x / scrollView.bounds.size.width;

//拿到collectionViewcell的個(gè)數(shù)

UICollectionView *collectionView = (UICollectionView *)scrollView;

NSInteger cellCount = [collectionView numberOfItemsInSection:0];

//當(dāng)scrollView停止?jié)L動(dòng)的時(shí)候,判斷是否是最后一個(gè)cell,如果是跳轉(zhuǎn)到? _imageList.count - 1

if (page == cellCount - 1) {

//說(shuō)明滾動(dòng)到了最后cell

[collectionView scrollToItemAtIndexPath:[NSIndexPath indexPathForItem:_imageList.count - 1 inSection:0] atScrollPosition:UICollectionViewScrollPositionLeft animated:NO];

}

}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {

return _imageList.count * 2;

//放兩個(gè) _imageList

}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {

MineCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellID forIndexPath:indexPath];

//? ? cell.image = _imageList[indexPath.item];

cell.image = _imageList[indexPath.item % _imageList.count];

//有五張圖片 item取得結(jié)果是0-4? 取模運(yùn)算 取到的結(jié)果 也是0-4

return cell;

}

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

NSInteger page = round(scrollView.contentOffset.x / scrollView.bounds.size.width);

//? ? self.pageControl.currentPage = round(scrollView.contentOffset.x / scrollView.bounds.size.width);

self.pageControl.currentPage = page % _imageList.count;

}

/*

scrollView 停止的時(shí)候 可能會(huì)調(diào)用三個(gè)方法 didEndDraging? didEndDecelerating? endScrolAnimated

*/

// a b c d e? a b c d e

//監(jiān)聽滾動(dòng)停止的 狀態(tài)? 手指停止拖動(dòng) 立馬停止?jié)L動(dòng)

//左右 滾動(dòng)的時(shí)候,一組數(shù)據(jù)滾完后,會(huì)有卡頓現(xiàn)象? 滾動(dòng)停止才會(huì)調(diào)用這個(gè)方法

//而且如果剛開始 就往左滾動(dòng) 無(wú)法滾動(dòng)? 解決方案:一上來(lái)就運(yùn)行在第五個(gè)上

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

//頁(yè)碼就是第幾個(gè)cell? 先拿到scrollView滾動(dòng)了幾個(gè)屏幕的寬度

NSInteger page = scrollView.contentOffset.x / scrollView.bounds.size.width;

//拿到collectionViewcell的個(gè)數(shù)

UICollectionView *collectionView = (UICollectionView *)scrollView;

NSInteger cellCount = [collectionView numberOfItemsInSection:0];

//當(dāng)scrollView停止?jié)L動(dòng)的時(shí)候,判斷是否是最后一個(gè)cell,如果是跳轉(zhuǎn)到? _imageList.count - 1

if (page == cellCount - 1) {

//說(shuō)明滾動(dòng)到了最后cell

[collectionView scrollToItemAtIndexPath:[NSIndexPath indexPathForItem:_imageList.count - 1 inSection:0] atScrollPosition:UICollectionViewScrollPositionLeft animated:NO];

}

if (page == 0) {

[collectionView scrollToItemAtIndexPath:[NSIndexPath indexPathForItem:_imageList.count inSection:0] atScrollPosition:UICollectionViewScrollPositionLeft animated:NO];

}

}

@end



MineFlowLayout

#import "MineFlowLayout.h"

@implementation MineFlowLayout

- (void)prepareLayout {

[super prepareLayout];

self.itemSize = self.collectionView.bounds.size;

self.scrollDirection = UICollectionViewScrollDirectionHorizontal;

self.minimumLineSpacing = 0;

self.minimumInteritemSpacing = 0;

}

@end



MineCollectionViewCell

#import@interface MineCollectionViewCell : UICollectionViewCell

@property (nonatomic,strong) UIImage *image;

@end


#import "MineCollectionViewCell.h"

#import "Masonry.h"

@interface MineCollectionViewCell ()

@property (nonatomic,weak) UIImageView *pictureView;

@end

@implementation MineCollectionViewCell

- (instancetype)initWithFrame:(CGRect)frame {

if (self = [super initWithFrame:frame]) {

[self setupUI];

}

return self;

}

- (void)setupUI{

UIImageView *imageView = [[UIImageView alloc]init];

[self.contentView addSubview:imageView];

self.pictureView = imageView;

[imageView mas_makeConstraints:^(MASConstraintMaker *make) {

make.edges.offset(0);

}];

}

- (void)setImage:(UIImage *)image {

_image = image;

self.pictureView.image = image;

}

@end

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市内贮,隨后出現(xiàn)的幾起案子饮怯,更是在濱河造成了極大的恐慌,老刑警劉巖陪竿,帶你破解...
    沈念sama閱讀 206,482評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件迄汛,死亡現(xiàn)場(chǎng)離奇詭異寂恬,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)哲银,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門扛吞,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人荆责,你說(shuō)我怎么就攤上這事滥比。” “怎么了做院?”我有些...
    開封第一講書人閱讀 152,762評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵盲泛,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我键耕,道長(zhǎng)寺滚,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,273評(píng)論 1 279
  • 正文 為了忘掉前任屈雄,我火速辦了婚禮村视,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘酒奶。我一直安慰自己蚁孔,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,289評(píng)論 5 373
  • 文/花漫 我一把揭開白布惋嚎。 她就那樣靜靜地躺著杠氢,像睡著了一般。 火紅的嫁衣襯著肌膚如雪另伍。 梳的紋絲不亂的頭發(fā)上鼻百,一...
    開封第一講書人閱讀 49,046評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音摆尝,去河邊找鬼愕宋。 笑死,一個(gè)胖子當(dāng)著我的面吹牛结榄,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播囤捻,決...
    沈念sama閱讀 38,351評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼臼朗,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起视哑,我...
    開封第一講書人閱讀 36,988評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤绣否,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后挡毅,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體蒜撮,經(jīng)...
    沈念sama閱讀 43,476評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,948評(píng)論 2 324
  • 正文 我和宋清朗相戀三年跪呈,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了段磨。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,064評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡耗绿,死狀恐怖苹支,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情误阻,我是刑警寧澤债蜜,帶...
    沈念sama閱讀 33,712評(píng)論 4 323
  • 正文 年R本政府宣布,位于F島的核電站究反,受9級(jí)特大地震影響寻定,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜精耐,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,261評(píng)論 3 307
  • 文/蒙蒙 一狼速、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧黍氮,春花似錦唐含、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,264評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至专执,卻和暖如春淮捆,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背本股。 一陣腳步聲響...
    開封第一講書人閱讀 31,486評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工攀痊, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人拄显。 一個(gè)月前我還...
    沈念sama閱讀 45,511評(píng)論 2 354
  • 正文 我出身青樓苟径,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親躬审。 傳聞我的和親對(duì)象是個(gè)殘疾皇子棘街,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,802評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容