UICollectionView 网格

1.layout:

制定UIcollectionView所使用的布局对象,它可支持Flow,Custom两个属性值,如果制定Flow属性值,表明使用

1.1UICollectionViewFlowLayout

UICollectionViewFlowLayout布局对象。如果制定Custom属性值,则表明将会使用自定义的UIcollectionViewLayout布局对象

UICollectionViewFlowLayout布局采用“流"的方式管理UICV中国年的所有单元格,这些单元格要么横向排列,要么纵向排列,其效果就像一个网格

scrollDirection:用于控制单元格滚动方向

minimumLineSpacing:用于控制单元格之间的最小行间距

minmumInteritemSpacing: 最小列间距

itemSize:单元格的宽度和高度

sectionInset:该属性用于设置各分区上下左右空白区域的大小

headerReferenceSize:各分区页眉控件大小

footerReferenceSize:页脚控件大小

1.2UICollectionViewLayout

ScollDirection 设计来源于UICVFL...

Accessories  是否显示UICV分区的页眉页脚

UICollectionView同样采用分区(Section)和多个单元格(Cell)同样使用NSIndexPath分装单元格位置信息

初始化---------------

UICollectionViewFlowLayout* layout=[[UICollectionViewFlowLayoutalloc]init];

//一个网格的大小

layout.itemSize=CGSizeMake(130,100);

//滚动的方向

layout.scrollDirection=0;

ViewController* view=[[ViewControlleralloc]

initWithCollectionViewLayout:layout];

是UICollectionViewFlowLayout不是UICollectionViewLayout

网格的cell需要自定义

.m----------------------------此类继承了UICollectionView

#import"ViewController.h"

#import"CollectionViewCell.h"

@interfaceViewController()

{

NSMutableArray* imageDataArr;

NSMutableArray* nameDataArr;

}

@end

@implementationViewController

staticNSString*constreuseIdentifier =@"Cell";

- (void)viewDidLoad {

[superviewDidLoad];

self.collectionView.backgroundColor=[UIColorwhiteColor];

// Uncomment the following line to preserve selection between presentations

// self.clearsSelectionOnViewWillAppear = NO;

// Register cell classes

[self.collectionViewregisterClass:[CollectionViewCellclass]forCellWithReuseIdentifier:reuseIdentifier];

imageDataArr=[NSMutableArrayarray];

nameDataArr=[NSMutableArrayarray];

for(inti=0;i<20; i++) {

[imageDataArraddObject:[NSStringstringWithFormat:@"%d",i+1]];

[nameDataArraddObject:[NSStringstringWithFormat:@"%d",i+1]];

}

// Do any additional setup after loading the view.

}

- (void)didReceiveMemoryWarning {

[superdidReceiveMemoryWarning];

// Dispose of any resources that can be recreated.

}

/*

#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {

// Get the new view controller using [segue destinationViewController].

// Pass the selected object to the new view controller.

}

*/

#pragma mark

-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView*)collectionView{

return1;

}

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

#warning Incomplete implementation, return the number of items

NSLog(@"%d",imageDataArr.count);

returnimageDataArr.count;

}

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

NSLog(@"1123");

CollectionViewCell* cell=[collectionView dequeueReusableCellWithReuseIdentifier:reuseIdentifier forIndexPath:indexPath];

cell.LLabel=nameDataArr[indexPath.row];

cell.imageView.image=[UIImage imageNamed:imageDataArr[indexPath.row]];

// Configure the cell

returncell;

}

自定义cell-------------------------------------------

@implementationmyCollectionViewCell

-(UILabel*)LName{

if(!_LName) {

_LName=[[UILabelalloc]initWithFrame:CGRectMake(20,130,80,30)];

}

return_LName;

}

-(UIImageView*)imageView{

if(!_imageView) {

_imageView=[[UIImageViewalloc]initWithFrame:CGRectMake(10,0,110,120)];

}

return_imageView;

}

//collectionView初始化cell时,使用的是initWithFrame:(CGRect)方法

- (instancetype)initWithFrame:(CGRect)frame

{

self= [superinitWithFrame:frame];

if(self) {

[selfaddSubview:self.imageView];

[selfaddSubview:self.LName];

}

returnself;

}

-----------------------------------------

-(void)prepareForSegue:(UIStoryboardSegue*)segue sender:(id)sender{

//获取激发该跳转的单元格

myCollectionViewCell* cell=(myCollectionViewCell*)sender;

//获取该店元格所在的NSIndexPath

NSIndexPath* indexPath=[self.collectionViewindexPathForCell:cell];

//获取跳转的目标视图控制器

detailViewController* detailController=segue.destinationViewController;

//将选中单元格内的数据传给控制器对象

detailController.imageView.image=[UIImageimageNamed:[NSStringstringWithFormat:@"%ld",indexPath.row]];

detailController.LName.text=[NSStringstringWithFormat:@"%ld",indexPath.row+1];

}

为了让用户单击某个单元格时,应用现实下一个视图控制器,并通过下一个视图控制器显示用户所选择的单元格数据,此时可以结束segue——在UICV的单元格与刚添加的视图控制器之间建立的push类型的 segue

10.19.2 使用UICollectionViewDelegateFlowLayout定制布局  这是一个协议

如果直接使用UICVFL布局对象来管理UICV所有单元格,那么这些单元格的大小,单元格之间的间距和行距都是相同的

UICollectionViewDelegateFlowLayout可以定制单元格大小参差不齐的网格

-collectionView:layout:sizeForItemAtIndexPath:该方法返回的CGSize返回的CGSize对象将控制制定NSIndexPath对应的单元格的大小

-collectionView:layout:insetForSectionAtIndex:该方法返回的UIEdgeInsets对象将控制指定分区上下左右空白区域的大小

-collectionView:layout:minimumLineSpacingForSectionAtIndex: 控制制定分区内最小的行间距

...miniInteritemSpacingForSectionAtIndex:控制指定分区内最小的列间距

...collectionView:layout:referenceSizeForHeadernSection:该方法返回的CGSize将控制制定分区的也没空间的大小

...FooterInsection:该方法返回的CGSize控制分区的也叫大小

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

row=indexPath.row;

[selfcollectionView:collectionViewlayout:collectionView.collectionViewLayoutsizeForItemAtIndexPath:indexPath];

[self.collectionViewreloadData];

}

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

UIImage* image=[UIImageimageNamed:[NSStringstringWithFormat:@"%ld",indexPath.row+1]];

//获取单元格将要显示的图片

if(indexPath.row==row) {

returnCGSizeMake(120*3,120*3);

}

returnCGSizeMake(120,160);

}

10.19.3 扩展UICollectionViewLayout定制布局

-prepareLayout:开始布局时调用该方法执行准备工作

-layoutAttributesForElementsInRect:指定NSRect区域内所有单元格的大小和位置等布局信息

-layoutAttributesForItemAtIndexPath: 该方法的返回值控制指定NSIndexPath对应的单元格大小和位置等布局信息

-layoutAttributesForSupplementaryViewOfKind:atIndexPath;控制指定分区的yemeikongjian 也叫空间的大小和位置等布局信息

-layoutAttributesForDecorationViewOfKindLatIndePah:装饰空间的大小和位置等布局信息

控制UICollectionView中单元格显示 隐藏时的动画效果,重写一下常用方法:

-initialLayoutAttributesForAppearingItemAtIndexPath:每当单元格动态增加时,自动调用该方法

-initialLayoutAttributesForSupplementaryViewOfKind:atIndexPath;页眉页脚动态增加时

-initialLayoutAttributesForAppearingDecorationElementOfKingd:atIndexPath:装饰控件动态增加时

-finalLayoutAttributesForDisappearingItemAtIndexPath:每当单元格动态消失时,自动调用该方法

-finalLayoutAttributesForDisappearingSupplementaryElementOfKind:atIndexPath:制定的页眉或页脚控件动态消失时自动调用该方法

-finalLayoutAttributesForDisappearingDecorationElementOfKingd:atIndexPath: 装饰控件动态消失

环形布局的UICollectionView

------------------------------------------

问题:

1.多个滚动方向

只能有一个滚动方向

2.UICollectionViewFlowLayout 和UICollectionViewLayout的区别

FlowLayout是Layout的子类。

flowLayout中封装了很多Layout没有的实用方法

比如://一个网格的大小

layout.itemSize=CGSizeMake(130,100);

//滚动的方向

layout.scrollDirection=0;

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

推荐阅读更多精彩内容