iOS collectionView属性和方法大全

整理了一下collectionView:

1.UICollectionViewLayout

UICollectionViewLayout可以说是UICollectionView的大脑和中枢,它负责了将各个cell、Supplementary View和Decoration Views进行组织,为它们设定各自的属性,Layout决定了UICollectionView是如何显示在界面上的。在展示之前,一般需要生成合适的UICollectionViewLayout子类对象,并将其赋予CollectionView的collectionViewLayout属性

UICollectionViewFlowLayout  *collectionViewFlowLayout=[[UICollectionViewFlowLayout alloc]init];

//最小间距

collectionViewFlowLayout.minimumInteritemSpacing=0.0;

//最小线间距

collectionViewFlowLayout.minimumLineSpacing=0.0;

//滚动方向

collectionViewFlowLayout.scrollDirection = UICollectionViewScrollDirectionVertical;

//插入部分

collectionViewFlowLayout.sectionInset = UIEdgeInsetsMake(0.0, 0.0, 0, 0.0);

//它定义了每一个item的大小。通过设定itemSize可以全局地改变所有cell的尺寸,如果想要对某个cell制定尺寸,可以使用-collectionView:layout:sizeForItemAtIndexPath:方法

collectionViewFlowLayout.itemSize=CGSizeMake(120, 120);

collectionViewFlowLayout.estimatedItemSize=CGSizeMake(120, 120);

//由属性scrollDirection确定scroll view的方向,将影响Flow Layout的基本方向和由header及footer确定的section之间的宽度

collectionViewFlowLayout.scrollDirection=UICollectionViewScrollDirectionVertical;

//Header和Footer尺寸 同样地分为全局和部分。需要注意根据滚动方向不同,header和footer的高和宽中只有一个会起作用。垂直滚动时section间宽度为该尺寸的高,而水平滚动时为宽度起作用

collectionViewFlowLayout.headerReferenceSize=CGSizeMake(100, 40);

collectionViewFlowLayout.footerReferenceSize=CGSizeMake(100, 40);

2.UICollectionView的属性

collectionView.backgroundColor=[UIColor whiteColor];

collectionView.delegate=self;

collectionView.dataSource=self;

//允许选择

collectionView.allowsSelection=YES;

//允许多个选择

collectionView.allowsMultipleSelection=YES;

// 注册相关类

[collectionView registerClass:[CCell class] forCellWithReuseIdentifier:@"cell"];

[collectionView registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"Header"];

[collectionView registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"Footer"];

//也可以用Nib

//    [[collectionView registerNib:<#(UINib *)#> forCellWithReuseIdentifier:<#(NSString *)#>]

//    collectionView registerNib:<#(UINib *)#> forSupplementaryViewOfKind:<#(NSString *)#> withReuseIdentifier:<#(NSString *)#>

3.UICollectionView的方法

//UICollectionViewDataSource  代理

//每节单元格数

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

{

if (section==0) {

return 6;

}

else

{

return 4;

}

}

//节数

- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView

{

return 2;

}

//单元格

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

{

CCell *cell =[collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];

cell.backgroundColor = [UIColor colorWithRed:arc4random()%256/ 255.0  green:arc4random()%256 / 255.0 blue:arc4random()% 256 / 255.0  alpha:1];

cell.myImageView=[[UIImageView alloc]initWithImage:[UIImage imageNamed:@"image0.jpg"]];

cell.nameLabel=[[UILabel alloc]init];

cell.nameLabel.text=[NSString stringWithFormat:@"%ld %ld",indexPath.section,indexPath.row];

return cell;

}

//节头节尾

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

{

if ([kind isEqualToString: UICollectionElementKindSectionFooter]) {

UICollectionReusableView *footer=[collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"Footer" forIndexPath:indexPath];

footer.backgroundColor=[UIColor yellowColor];

UILabel *label=[[UILabel alloc]initWithFrame:CGRectMake(0, 0, 100, 40)];

[email protected]"label";

label.textAlignment=NSTextAlignmentCenter;

[footer addSubview:label];

return footer;

}

else

{

UICollectionReusableView *Header=[collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"Header" forIndexPath:indexPath];

Header.backgroundColor=[UIColor blueColor];

return Header;

}

}

//UICollectionViewDelegate 代理

//选中时是否高亮

- (BOOL)collectionView:(UICollectionView *)collectionView shouldHighlightItemAtIndexPath:(NSIndexPath *)indexPath

{

if (indexPath.row%2==0) {

return YES;

}

return NO;

}

//选中高亮显示后

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

{

NSLog(@"didHighlightItemAtIndexPath");

}

// 允许被选中

- (BOOL)collectionView:(UICollectionView *)collectionView shouldSelectItemAtIndexPath:(NSIndexPath *)indexPath

{

return YES;

}

//允许被取消

- (BOOL)collectionView:(UICollectionView *)collectionView shouldDeselectItemAtIndexPath:(NSIndexPath *)indexPath

{

return YES;

}

//选中某个单元格

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

{

NSLog(@"didSelectItemAtIndexPath section=%ld row=%ld",indexPath.section,indexPath.row);

}

//取消某个单元格

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

{

NSLog(@"didDeselectItemAtIndexPath section=%ld row=%ld",indexPath.section,indexPath.row);

}

//高亮不显示

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

{

NSLog(@"didUnhighlightItemAtIndexPath");

}

//即将展示UICollectionViewCell

- (void)collectionView:(UICollectionView *)collectionView willDisplayCell:(UICollectionViewCell *)cell forItemAtIndexPath:(NSIndexPath *)indexPath

{

NSLog(@"willDisplayCell");

}

//即将显示section的footer和header

- (void)collectionView:(UICollectionView *)collectionView willDisplaySupplementaryView:(UICollectionReusableView *)view forElementKind:(NSString *)elementKind atIndexPath:(NSIndexPath *)indexPath

{

NSLog(@"willDisplaySupplementaryView");

}

//UICollectionViewCell显示完成

- (void)collectionView:(UICollectionView *)collectionView didEndDisplayingCell:(UICollectionViewCell *)cell forItemAtIndexPath:(NSIndexPath *)indexPath

{

NSLog(@"didEndDisplayingCell");

}

//显示section的footer和header完成

- (void)collectionView:(UICollectionView *)collectionView didEndDisplayingSupplementaryView:(UICollectionReusableView *)view forElementOfKind:(NSString *)elementKind atIndexPath:(NSIndexPath *)indexPath

{

NSLog(@"didEndDisplayingSupplementaryView");

}

//是否显示 copy、cut、paste等

- (BOOL)collectionView:(UICollectionView *)collectionView shouldShowMenuForItemAtIndexPath:(NSIndexPath *)indexPath

{

return YES;

}

//是否显示action辅助功能

- (BOOL)collectionView:(UICollectionView *)collectionView canPerformAction:(SEL)action forItemAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender

{

SEL [email protected](copy:);

if (sel==action) {

return YES;

}

return NO;

}

//判断选择的是什么action

- (void)collectionView:(UICollectionView *)collectionView performAction:(SEL)action forItemAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender

{

SEL [email protected](copy:);

if (sel==action) {

NSLog(@"aaaaa");

}

}

时间: 2024-09-29 22:13:13

iOS collectionView属性和方法大全的相关文章

[OC][转]UITableView属性及方法大全

Tip: UITableView属性及方法大全  (摘录地址) p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; line-height: 14.0px; font: 12.0px Times; min-height: 14.0px } p.p2 { margin: 0.0px 0.0px 0.0px 0.0px; line-height: 14.0px; font: 12.0px "Songti SC" } p.p3 { margin: 0.0px 0.

Android零基础入门第22节:ImageView的属性和方法大全

通过前面几期的学习,TextView控件及其子控件基本学习完成,可以在Android屏幕上显示一些文字或者按钮,那么从本期开始来学习如何在进行图片展示,这就是涉及到另外一个非常重要的控件家族,那就是ImageView. 一.认识ImageView ImageView继承自View组件,主要功能是用于显示图片,可以显示任意图像.ImageView与其子类的类图如下图所示. 从上图可以看到,ImageView 还派生出了 ImageButton.ZoomButton等组件,因此ImageView支持

EXTJS 3.0 资料 控件之 GridPanel属性与方法大全

1.Ext.grid.GridPanel 主要配置项: store:表格的数据集 columns:表格列模式的配置数组,可自动创建ColumnModel列模式 autoExpandColumn:自动充满表格未用空间的列,参数为列id,该id不能为0 stripeRows:表格是否隔行换色,默认为false cm.colModel:表格的列模式,渲染表格时必须设置该配置项 sm.selModel:表格的选择模式,默认为Ext.grid.RowSelectionModel enableHdMenu:

iOS网络第三方使用方法大全AFNetworking/ASIHTTPRequest/MKNetworkKit

1. 参与对比的孩子有 AFNetworking/ASIHTTPRequest/MKNetworkKit 1. GET 1~ 新建工程: SingleProject 带故事板的. 为了我们测试的方便 2~ 打开系统命令提示符 ->  使用cocoapods 下载这3个第三方库 -> 如果不会使用cocoapods请百度cocoapods-> 然后确认环境. 进行安装 3~ podfile: platform: iOS, '7.0' pod "AFNetworking"

UIView的属性、方法大全

addSubview  父视图通过该方法添加视图,该方法将一个视图添加到子视图列表的最后 insertSubview  可以在父视图的子视图列表中间插入视图 bringSubviewToFront  sendSubviewToBack  exchangeSubviewAtIndex:withSubviewAtIndex  可以对父视图的子视图重新排序,使用这些方法比从父视图中移除子视图并再次插入要快一些 removeFromSuperview  将子视图从父视图中移除 当你为某个视图添加子视图时

iOS 运行时添加属性和方法

原文链接http://blog.csdn.net/meegomeego/article/details/18356169第一种:runtime.h里的方法 BOOL class_addProperty(Class cls,constchar*name,constobjc_property_attribute_t*attributes,unsignedint attributeCount) #include <objc/runtime.h> #import <Foundation/Foun

iOS开发 UITableView的方法和属性总结

本文描述UITableView的各种方法,属性,委托以及数据源.本文的目的只是总结UITableView的用法,详细的例子另撰文描述. 1 数据源  UITableViewDataSource协议 01 返回组(节)的个数,默认是返回1,如果只有1组数据,可以不用实现该方法. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView 02 返回某一组的行数,该组由section的值决定 - (NSInteger)table

UIApplication常见属性与方法总结--ios

UIApplication 1.简介 1> 整个应用程序的象征,一个应用程序就一个UIApplication对象,使用了单例设计模式 2> 通过[UIApplication sharedApplication]访问这个单例对象 2.常见用法     1> 设置图标右上角的红色提示数字 app.applicationIconBadgeNumber = 10; 2> 设置状态栏的样式 app.statusBarStyle = UIStatusBarStyleBlackOpaque; 3

iOS开发——swift篇&amp;Swift新特性(三)属性、方法、下标

属性.方法.下标 存储属性和计算属性 类.结构和枚举都能够定义存储属性和计算属性.其中存储属性就是常见的形式,又分为变量属性和常量属性,如: struct Point { var x = 0.0, y = 0.0 } struct Size { var width = 0.0, height = 0.0 } 计算属性本身不是一个值,但是它提供getter和setter来间接地使用和设置存储属性的值: struct Rect { var origin = Point() var size = Si