UICOllectionView-集合视图

一、集合视图的概念

1、如何创建UIColletionView

2、集合视图的布局UICollectionViewFlowLayyout

3、自定义cell

4、布局协议UICollectionViewDelegateFlowLayout

5、UICollectonView与UITableView的实现类似,都需要设置delegate和dataSource

6、在collectionView中,cell的布局比tableView要复杂,需要使用一个类来描述集合视图的布局---UICollectionViewLayout->UICollectionViewFlowLayout

二、创建步骤

1.使用系统布局UICollectionViewFlowLayout

2.创建UICollectionView

3.设置代理,设置数据源

4.设置自定义Cell

数据源

我们需要给collectionView指定一个数据源,它负责给对collectionView提供数据与显示

#import"JYFViewController.h"

#import"Model.h"

#import"MyCell.h"

#import"MyHeader.h"

#import"MyFooter.h"

#import"UIImageView+WebCache.h"

@interfaceJYFViewController()<UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout>

@property(nonatomic,retain)NSMutableArray*allDataArray;

@end

@implementationJYFViewController

- (void)viewDidLoad

{

[superviewDidLoad];

// 1.获取文件路径

NSString*filePath = [[NSBundlemainBundle]pathForResource:@"Data"ofType:@"json"];

// 2.读取文件数据

NSData*data = [NSDatadataWithContentsOfFile:filePath];

// 3.解析数据

NSArray*array = [NSJSONSerializationJSONObjectWithData:dataoptions:NSJSONReadingAllowFragments error:nil];

// 4.遍历放入大数组中

self.allDataArray= [NSMutableArrayarray];

for(NSDictionary*dictinarray) {

Model*model = [Modelnew];

[modelsetValuesForKeysWithDictionary:dict];

[_allDataArrayaddObject:model];

[modelrelease];

NSLog(@"%@",_allDataArray);

}

// 1.创建UICollectionViewFlowLayout

UICollectionViewFlowLayout*flowLayout = [[UICollectionViewFlowLayoutalloc]init];

// 1.1设置每个Item的大小

flowLayout.itemSize=CGSizeMake(90,210);

// 1.2 设置每列最小间距

flowLayout.minimumInteritemSpacing=10;

// 1.3设置每行最小间距

flowLayout.minimumLineSpacing=10;

// 1.4设置滚动方向

flowLayout.scrollDirection=UICollectionViewScrollDirectionVertical;

// 1.5设置header区域大小

flowLayout.headerReferenceSize=CGSizeMake(self.view.bounds.size.width,50);

// 1.6设置footer区域大小

flowLayout.footerReferenceSize=CGSizeMake(self.view.bounds.size.width,50);

// 1.7 设置item内边距大小

flowLayout.sectionInset=UIEdgeInsetsMake(10,10,10,10);

// 2.创建UICollectionView

UICollectionView*collectionView = [[UICollectionViewalloc]initWithFrame:self.view.boundscollectionViewLayout:flowLayout];

// 3.设置数据源代理、collection代理

collectionView.dataSource=self;

collectionView.delegate=self;

[self.viewaddSubview:collectionView];

[collectionViewrelease];

[flowLayoutrelease];

collectionView.backgroundColor= [UIColorcolorWithRed:0.895green:1.000blue:0.656alpha:1.000];

// 4.注册cell的类型和重用标示符

[collectionViewregisterClass:[MyCellclass]forCellWithReuseIdentifier:@"cell"];

// 5.注册footer和header类型的重用标识符

[collectionViewregisterClass:[MyHeaderclass]forSupplementaryViewOfKind:UICollectionElementKindSectionHeaderwithReuseIdentifier:@"headerView"];

[collectionViewregisterClass:[MyFooterclass]forSupplementaryViewOfKind:UICollectionElementKindSectionFooter

withReuseIdentifier:@"footerView"];

}

#pragma mark - UICollectionViewDataSource Methods

#pragma mark 设置有多少个section

- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView*)collectionView

{

return5;

}

#pragma mark 设置某个分组有多少行

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

{

return13;

}

#pragma mark 设置某个Item显示什么内容

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

{

// 1.去重用队列中查找

MyCell*cell = [collectionViewdequeueReusableCellWithReuseIdentifier:@"cell"forIndexPath:indexPath];

// 2.使用

//CGFloat red = arc4random()% 256 / 255.0;

//CGFloat green = arc4random() % 256 / 255.0;

//CGFloat blue = arc4random() % 256 / 255.0;

//cell.backgroundColor = [UIColor colorWithRed:red green:green blue:blue alpha:1.0];

cell.label.text= [NSStringstringWithFormat:@"s = %ld r =%ld", indexPath.section, indexPath.row];

// 3.获取将要显示的模型

Model*model =_allDataArray[indexPath.row];

// 4.使用第三方获取图片并自动缓存

NSURL*imageUrl = [NSURLURLWithString:model.thumbURL];

[cell.imageViewsd_setImageWithURL:imageUrlplaceholderImage:[UIImageimageNamed:@"default_head_image@2x.png"]];

returncell;

}

#pragma mark 处理点击事件

- (void)collectionView:(UICollectionView*)collectionView didSelectItemAtIndexPath:(NSIndexPath*)indexPath

{

NSLog(@"我被点击了");

}

#pragma mark - UICollectionViewDelegateFlowLayout Method

#pragma mark 设置item的大小

- (CGSize)collectionView:(UICollectionView*)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath*)indexPath

{

returnCGSizeMake(90,120);

}

#pragma mark 设置footer和header

- (UICollectionReusableView*)collectionView:(UICollectionView*)collectionView viewForSupplementaryElementOfKind:(NSString*)kind atIndexPath:(NSIndexPath*)indexPath

{

if(kind ==UICollectionElementKindSectionHeader) {

// 去重用队列取可用的header

MyHeader*reusableView = [collectionViewdequeueReusableSupplementaryViewOfKind:kindwithReuseIdentifier:@"headerView"forIndexPath:indexPath];

// 使用

reusableView.headerImage.image= [UIImageimageNamed:@"屏幕快照 2014-0 9.30.50 9-11 上午.png"];

// 返回

returnreusableView;

}else{

// 去重用队列取可用的footer

MyFooter*reusableView = [collectionViewdequeueReusableSupplementaryViewOfKind:kindwithReuseIdentifier:@"footerView"forIndexPath:indexPath];

// 使用

reusableView.backgroundColor= [UIColorredColor];

// 返回

returnreusableView;

}

}

#pragma mark 设置header和footer高度

- (CGSize)collectionView:(UICollectionView*)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section

{

returnCGSizeMake(self.view.bounds.size.width,70);

}

- (CGSize)collectionView:(UICollectionView*)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section

{

returnCGSizeMake(self.view.bounds.size.width,70);

}

- (void)didReceiveMemoryWarning

{

[superdidReceiveMemoryWarning];

// Dispose of any resources that can be recreated.

}

- (void)dealloc

{

[_allDataArrayrelease];

[superdealloc];

}

@end

总结:

集合视图UICollectionView和表示图UITableView很相似,可根据layout属性设置,显示单元格集合内容

UICollectionViewDataSource类作为集合视图的数据源,向集合视图提供数据。集合视图依赖于委托(Delegate)中定义的方法对用户进行响应

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 199,711评论 5 468
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 83,932评论 2 376
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 146,770评论 0 330
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 53,799评论 1 271
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 62,697评论 5 359
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,069评论 1 276
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,535评论 3 390
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,200评论 0 254
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,353评论 1 294
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,290评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,331评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,020评论 3 315
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,610评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,694评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,927评论 1 255
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,330评论 2 346
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 41,904评论 2 341

推荐阅读更多精彩内容