ios 基于collectionView輪播圖,自動定時器

···
//
// WFSwiperView.m
// WFModStyle1
//
// Created by wufan on 2021/4/23.
//

import "WFSwiperView.h"

import "WFModSafeTimer.h"

import "WFSwiperViewCell.h"

import "WFPageControl.h"

define MaxSection 20

@interface WFSwiperView()<UICollectionViewDelegate,UICollectionViewDataSource,WFModSafeTimerDelegate>
@property (nonatomic, strong ) UICollectionView *swiperView;
@property (nonatomic, strong ) WFPageControl *pageControl;

@property (nonatomic, strong ) WFModSafeTimer *timer;
@property (nonatomic, strong ) NSMutableArray *items;

@end

@implementation WFSwiperView

  • (instancetype)initWithFrame:(CGRect)frame
    {
    self = [super initWithFrame:frame];
    if (self) {

      [self addSubview:self.swiperView];
      [self.swiperView registerClass:[WFSwiperViewCell class] forCellWithReuseIdentifier:@"WFSwiperViewCell"];
      self.backgroundColor  = [UIColor redColor];
      self.timer = [[WFModSafeTimer alloc]init];
      self.timer.delegate = self;
      [self.timer scheduledTimerWithTimeInterval:1.5 repeats:YES];
      
      self.pageControl = [[WFPageControl alloc]initWithFrame:CGRectMake(0, self.frame.size.height-50, self.frame.size.width, 50)];
      [self.pageControl addTarget:self action:@selector(didClickPageCo:) forControlEvents:UIControlEventValueChanged];
      self.pageControl.numberOfPages = 2;
      self.pageControl.currentPage = 0;
      self.pageControl.hidesForSinglePage =self;
      self.pageControl.pageIndicatorTintColor = [UIColor grayColor];
      self.pageControl.currentPageIndicatorTintColor = [UIColor redColor];
    

// [self.pageControl setValue:[UIImage imageNamed:@"select.png"] forKeyPath:@"currentPageImage"];
// [self.pageControl setValue:[UIImage imageNamed:@"common"] forKeyPath:@"pageImage"];

    [self insertSubview:self.pageControl aboveSubview:self.swiperView];
   
}
return self;

}

  • (void )didClickPageCo:(UIPageControl *)sender{
    NSInteger page = sender.currentPage;

}

  • (void )startTimer :(BOOL )startOrStop{
    if (startOrStop) {
    [self.timer startTimer:YES];
    }else{
    [self.timer stopTimer];
    }
    }

  • (void )loadDatas :(NSArray *)items{
    [self.items removeAllObjects];
    self.items = items.mutableCopy;
    // if (items.count>0) {
    // [self.items insertObject:items.lastObject atIndex:0];
    // [self.items addObject:items[0]];
    // }
    [self.timer startTimer:NO];

    [self.swiperView scrollToItemAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:MaxSection/2] atScrollPosition:UICollectionViewScrollPositionRight animated:YES];
    self.pageControl.numberOfPages = items.count;
    }

  • (void)timeRuningAction{

    if (self.swiperView.dragging) {
    return;
    }

    {
    NSIndexPath *currentIndexPath = [[self.swiperView indexPathsForVisibleItems] lastObject];

      NSIndexPath *currentIndexPathReset = [NSIndexPath indexPathForItem:currentIndexPath.item inSection:MaxSection/2];
      [self.swiperView scrollToItemAtIndexPath:currentIndexPathReset atScrollPosition:UICollectionViewScrollPositionLeft animated:NO];
    
      NSInteger nextItem = currentIndexPathReset.item +1;
      NSInteger nextSection = currentIndexPathReset.section;
      if (nextItem==self.items.count) {
          nextItem=0;
          nextSection++;
      }
      NSIndexPath *nextIndexPath = [NSIndexPath indexPathForItem:nextItem inSection:nextSection];
      NSLog(@"nextSection :%ld nextItem:%ld",nextSection,nextItem);
      [self.swiperView scrollToItemAtIndexPath:nextIndexPath atScrollPosition:UICollectionViewScrollPositionLeft animated:YES];
    

    }
    }

  • (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{
    return MaxSection;
    }

  • (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
    return self.items.count;
    }

  • (__kindof UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
    WFSwiperViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"WFSwiperViewCell" forIndexPath:indexPath];
    if (!cell) {
    cell = [[WFSwiperViewCell alloc]init];
    }
    [cell loadImage: self.items[indexPath.row]];
    return cell;
    }

  • (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{
    UIResponder *resp = self;
    while ((resp = [resp nextResponder])) {
    if ([resp isKindOfClass:[UIViewController class]]) {
    UIViewController *co = (UIViewController *)resp;
    UIViewController *pVC = [[NSClassFromString(@"WCModHomePageViewController") alloc]init];
    [co.navigationController pushViewController:pVC animated:YES];
    return;
    }
    }
    }

  • (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView{
    [self.timer stopTimer];
    }

  • (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate{
    [self.timer startTimer:YES];
    }

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

}

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

}

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

    int page = (int) (scrollView.contentOffset.x/scrollView.frame.size.width+0.5)%self.items.count;
    self.pageControl.currentPage =page;

}

  • (UICollectionView *)swiperView {
    if (!_swiperView) {

      UICollectionViewFlowLayout *flayout = [[UICollectionViewFlowLayout alloc]init];
      flayout.scrollDirection             = UICollectionViewScrollDirectionHorizontal;
      flayout.minimumLineSpacing          = 0;
      flayout.minimumInteritemSpacing     = 0;
      flayout.itemSize                    = CGSizeMake(ScreenWidth, self.frame.size.height);
      _swiperView = [[UICollectionView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, self.frame.size.height) collectionViewLayout:flayout];
      _swiperView.pagingEnabled           = YES;
      _swiperView.bounces                 = NO;
      _swiperView.showsHorizontalScrollIndicator = NO;
      _swiperView.showsVerticalScrollIndicator   = NO;
      _swiperView.dataSource              = self;
      _swiperView.delegate                = self;
    

    }
    return _swiperView;
    }

  • (NSMutableArray *)items {
    if (!_items) {
    _items = [[NSMutableArray alloc]init];
    }
    return _items;
    }

  • (void)dealloc
    {
    [self.timer removeTimer];
    self.timer = nil;
    NSLog(@"輪播圖已銷毀");
    }
    @end

···
具體代碼位置:GitHub

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末变屁,一起剝皮案震驚了整個濱河市议惰,隨后出現的幾起案子践惑,更是在濱河造成了極大的恐慌腹泌,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,718評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件尔觉,死亡現場離奇詭異凉袱,居然都是意外死亡,警方通過查閱死者的電腦和手機侦铜,發(fā)現死者居然都...
    沈念sama閱讀 90,683評論 3 385
  • 文/潘曉璐 我一進店門专甩,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人钉稍,你說我怎么就攤上這事涤躲。” “怎么了贡未?”我有些...
    開封第一講書人閱讀 158,207評論 0 348
  • 文/不壞的土叔 我叫張陵种樱,是天一觀的道長。 經常有香客問我俊卤,道長嫩挤,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,755評論 1 284
  • 正文 為了忘掉前任瘾蛋,我火速辦了婚禮俐镐,結果婚禮上,老公的妹妹穿的比我還像新娘哺哼。我一直安慰自己佩抹,他們只是感情好,可當我...
    茶點故事閱讀 65,862評論 6 386
  • 文/花漫 我一把揭開白布取董。 她就那樣靜靜地躺著棍苹,像睡著了一般。 火紅的嫁衣襯著肌膚如雪茵汰。 梳的紋絲不亂的頭發(fā)上枢里,一...
    開封第一講書人閱讀 50,050評論 1 291
  • 那天,我揣著相機與錄音蹂午,去河邊找鬼栏豺。 笑死,一個胖子當著我的面吹牛豆胸,可吹牛的內容都是我干的奥洼。 我是一名探鬼主播,決...
    沈念sama閱讀 39,136評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼晚胡,長吁一口氣:“原來是場噩夢啊……” “哼灵奖!你這毒婦竟也來了嚼沿?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 37,882評論 0 268
  • 序言:老撾萬榮一對情侶失蹤瓷患,失蹤者是張志新(化名)和其女友劉穎骡尽,沒想到半個月后,有當地人在樹林里發(fā)現了一具尸體擅编,經...
    沈念sama閱讀 44,330評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡攀细,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,651評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現自己被綠了沙咏。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片辨图。...
    茶點故事閱讀 38,789評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖肢藐,靈堂內的尸體忽然破棺而出故河,到底是詐尸還是另有隱情,我是刑警寧澤吆豹,帶...
    沈念sama閱讀 34,477評論 4 333
  • 正文 年R本政府宣布鱼的,位于F島的核電站,受9級特大地震影響痘煤,放射性物質發(fā)生泄漏凑阶。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 40,135評論 3 317
  • 文/蒙蒙 一衷快、第九天 我趴在偏房一處隱蔽的房頂上張望宙橱。 院中可真熱鬧,春花似錦蘸拔、人聲如沸师郑。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,864評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽宝冕。三九已至,卻和暖如春邓萨,著一層夾襖步出監(jiān)牢的瞬間地梨,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,099評論 1 267
  • 我被黑心中介騙來泰國打工缔恳, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留宝剖,地道東北人。 一個月前我還...
    沈念sama閱讀 46,598評論 2 362
  • 正文 我出身青樓歉甚,卻偏偏與公主長得像诈闺,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子铃芦,可洞房花燭夜當晚...
    茶點故事閱讀 43,697評論 2 351

推薦閱讀更多精彩內容