collectionView的使用跟tableview差不多,比table更强大(ios6.0以后)1、需实现的协议2、标识cell和header、footerstatic NSString* cellIdentifier = @"identifier";static NSString* cellS...
分类:
其他好文 时间:
2015-08-06 10:43:22
阅读次数:
141
首先文件工程服从两个协议
之后看代码
UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc] init];
[flowLayout setScrollDirection:UICollectionViewScrollDirectionVertical];
flowLay...
分类:
移动开发 时间:
2015-07-31 18:20:09
阅读次数:
121
1.创建一个UIView --- 创建UICollectionView放在view上 --- 在这之前先初始化UICollectionViewFlowLayout实例对象#import @interface BCView : UIView@property(nonatomic,strong)UICo...
分类:
其他好文 时间:
2015-07-31 17:55:08
阅读次数:
132
本章通过先总体介绍UICollectionView及其常用方法,再结合一个实例,了解如何使用UICollectionView。UICollectionView 和 UICollectionViewController 类是iOS6 新引进的API,用于展示集合视图,布局更加灵活,可实现多列布局,用法...
分类:
移动开发 时间:
2015-07-29 15:48:45
阅读次数:
136
初始化://初始化布局类(UICollectionViewLayout的子类)UICollectionViewFlowLayout *fl = [[UICollectionViewFlowLayout alloc]init];//初始化collectionViewself.collectionVie...
分类:
其他好文 时间:
2015-07-27 20:54:52
阅读次数:
132
效果:
collectionView的数据源方法
- (UICollectionViewCell *) collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath
*)indexPath
{
newsCell *cell = [collectionVi...
分类:
其他好文 时间:
2015-07-24 14:27:18
阅读次数:
114
collectionView中只有三个cell 每次显示的都是第二个cell
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath
*)indexPath {
CycleViewCell *ce...
分类:
其他好文 时间:
2015-07-24 14:26:35
阅读次数:
123
1 Assertion failure in -[UICollectionView _dequeueReusableViewOfKind:withIdentifier:forIndexPath:viewCategory:], /SourceCache/UIKit_Sim/UIKit-3347.44....
分类:
其他好文 时间:
2015-07-22 17:55:47
阅读次数:
83
xib 用不好在开发中很容易制造各种crash,issue像1.[CUINamedImage collectionView:numberOfItemsInSection:]: unrecognized selector sent to instance 0x8c9a6d02.*** Assertio...
分类:
其他好文 时间:
2015-07-21 12:06:20
阅读次数:
200
最近流行的一种界面效果,是瀑布流的header固定,也叫sticky header或者parallax。对于UITableView,可以比较方便地让table header固定,但是对于UICollectionView,原生的iOS API比较难以实现。本文推荐一个开源组件,专门用于实现这种效果...
分类:
Web程序 时间:
2015-07-21 06:49:39
阅读次数:
232