博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS开发UI篇—无限轮播(循环展示)
阅读量:6264 次
发布时间:2019-06-22

本文共 4885 字,大约阅读时间需要 16 分钟。

一、简单说明

之前的程序还存在一个问题,那就是不能循环展示,因为plist文件中只有五个数组,因此第一个和最后一个之后就没有了,下面介绍处理这种循环展示问题的小技巧。

方法一:使用一个for循环,循环200次,创建200*=1000个模型,且默认程序启动后处在第100组的位置,向前有500个模型,向后也有500个模型,产生一种循环展示的假象。

  代码如下:

复制代码
1 //  2 // YYViewController.m 3 // 07-无限滚动(循环利用) 4 //  5 // Created by apple on 14-8-3. 6 // Copyright (c) 2014年 yangyong. All rights reserved. 7 // 8  9 #import "YYViewController.h" 10 #import "MJExtension.h" 11 #import "YYnews.h" 12 #import "YYcell.h" 13 14 #define YYIDCell @"cell"15 16 @interface YYViewController ()
17 @property (weak, nonatomic) IBOutlet UICollectionView *collectinView;18 @property(nonatomic,strong)NSMutableArray *news;19 @end 20 21 @implementation YYViewController22 23 #pragma mark-懒加载24 //-(NSArray *)news25 //{26 // if (_news==nil) {27 // _news=[YYnews objectArrayWithFilename:@"newses.plist"];28 // }29 // return _news;30 //} 31 -(NSMutableArray *)news32 {33 if (_news==nil) {34 _news=[NSMutableArray array];35 for (int i=0; i<200; i++) {36 NSArray *array=[YYnews objectArrayWithFilename:@"newses.plist"];37 [_news addObjectsFromArray:array];38 }39 }40 return _news;41 }42 43 - (void)viewDidLoad44 {45 [super viewDidLoad];46 //注册cell47 // [self.collectinView registerClass:[YYimageCell class] forCellWithReuseIdentifier:YYCell]; 48 [self.collectinView registerNib:[UINib nibWithNibName:@"YYcell" bundle:nil] forCellWithReuseIdentifier:YYIDCell];49 50 //默认处于第0组的第500个模型的左边 51 [self.collectinView scrollToItemAtIndexPath:[NSIndexPath indexPathForItem:500 inSection:0] atScrollPosition:UICollectionViewScrollPositionLeft animated:YES];52 53 }54 55 #pragma mark- UICollectionViewDataSource56 //一共多少组,默认为1组 57 -(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView58 {59 return 1;60 }61 -(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section62 {63 return self.news.count;64 }65 66 -(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath67 {68 YYcell *cell=[collectionView dequeueReusableCellWithReuseIdentifier:YYIDCell forIndexPath:indexPath];69 cell.news=self.news[indexPath.item];70 NSLog(@"%p,%d",cell,indexPath.item);71 return cell;72 }73 74 #pragma mark-UICollectionViewDelegate75 @end
复制代码

  打印查看所处的索引(全程依然只创建了两个cell):

说明:

  [self.collectinView scrollToItemAtIndexPath:<#(NSIndexPath *)#> atScrollPosition:<#(UICollectionViewScrollPosition)#> animated:<#(BOOL)#>]

 //默认处于第0组的第500个模型的左边

方法二:设置其有100组,那么一共有100*5=500个模型。且设置默认处于第50组的索引为0处。

  代码如下:

复制代码
1 //  2 // YYViewController.m 3 // 07-无限滚动(循环利用) 4 //  5 // Created by apple on 14-8-3. 6 // Copyright (c) 2014年 yangyong. All rights reserved. 7 // 8  9 #import "YYViewController.h" 10 #import "MJExtension.h" 11 #import "YYnews.h" 12 #import "YYcell.h" 13 14 #define YYIDCell @"cell"15 16 @interface YYViewController ()
17 @property (weak, nonatomic) IBOutlet UICollectionView *collectinView;18 @property(nonatomic,strong)NSArray *news;19 @end 20 21 @implementation YYViewController22 23 #pragma mark-懒加载24 -(NSArray *)news25 {26 if (_news==nil) {27 _news=[YYnews objectArrayWithFilename:@"newses.plist"];28 }29 return _news;30 }31 //-(NSMutableArray *)news32 //{33 // if (_news==nil) {34 // _news=[NSMutableArray array];35 // for (int i=0; i<200; i++) {36 // NSArray *array=[YYnews objectArrayWithFilename:@"newses.plist"];37 // [_news addObjectsFromArray:array];38 // }39 // }40 // return _news;41 //} 42 43 - (void)viewDidLoad44 {45 [super viewDidLoad];46 //注册cell47 // [self.collectinView registerClass:[YYimageCell class] forCellWithReuseIdentifier:YYCell]; 48 [self.collectinView registerNib:[UINib nibWithNibName:@"YYcell" bundle:nil] forCellWithReuseIdentifier:YYIDCell];49 50 //默认处于第0组的第500个模型的左边51 // [self.collectinView scrollToItemAtIndexPath:[NSIndexPath indexPathForItem:500 inSection:0] atScrollPosition:UICollectionViewScrollPositionLeft animated:YES]; 52 53 [self.collectinView scrollToItemAtIndexPath:[NSIndexPath indexPathForItem:0 inSection:50] atScrollPosition:UICollectionViewScrollPositionLeft animated:YES];54 55 }56 57 #pragma mark- UICollectionViewDataSource58 //一共多少组,默认为1组 59 -(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView60 {61 return 100;62 }63 -(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section64 {65 return self.news.count;66 }67 68 -(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath69 {70 YYcell *cell=[collectionView dequeueReusableCellWithReuseIdentifier:YYIDCell forIndexPath:indexPath];71 cell.news=self.news[indexPath.item];72 NSLog(@"%p,%d",cell,indexPath.item);73 return cell;74 }75 76 #pragma mark-UICollectionViewDelegate77 @end
复制代码

注意:上面的两种方法都创建了大量的无用的模型,不太可取。且在实际开发中,建议模型的总数不要太大,因为在其内部需要遍历计算所有控件的frame。

  如果模型数量太大,会占用资源。

改进建议:可以监听手指在上面的滚动,当停止滚动的时候,又重新设置初始的中间位置。

转载地址:http://jbupa.baihongyu.com/

你可能感兴趣的文章
10g集群启动顺序
查看>>
习水医院12C RAC 数据库安装文档
查看>>
Jmeter常用脚本开发之Junit Request
查看>>
C# 加密–RSA前端与后台的加密&解密
查看>>
reduce/reduceRight
查看>>
(转)(contant的一些用法)
查看>>
Shell 脚本常用命令
查看>>
再次改版轮播图
查看>>
pandas系列 read_excel() 和 to_excel()各参数详解
查看>>
VGG使用重复元素的网络
查看>>
Android——Intent,Bundle
查看>>
Flip Game
查看>>
android网络编程之HttpUrlConnection的讲解--DownLoadManager基本用法
查看>>
Leetcode题目:Remove Duplicates from Sorted Array
查看>>
A little collection of cool unix terminal/console/curses tools
查看>>
40个js小技巧:屏蔽鼠标右键、取消选取、防止复制、粘贴、转换地址栏图标
查看>>
mac apache的使用
查看>>
go标准库的学习-hash
查看>>
log4j容器初始化探究
查看>>
Linux通配符与特殊符号知识大全
查看>>