码迷,mamicode.com
首页 >  
搜索关键字:uicollectionview 集合视图    ( 488个结果
UICollectionView初探
collectionView的使用跟tableview差不多,比table更强大(ios6.0以后)1、需实现的协议2、标识cell和header、footerstatic NSString* cellIdentifier = @"identifier";static NSString* cellS...
分类:其他好文   时间:2015-08-06 10:43:22    阅读次数:141
ios UICollectionView 的使用
首先文件工程服从两个协议 之后看代码      UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc] init];     [flowLayout setScrollDirection:UICollectionViewScrollDirectionVertical];     flowLay...
分类:移动开发   时间:2015-07-31 18:20:09    阅读次数:121
UI控件---CollectionView
1.创建一个UIView --- 创建UICollectionView放在view上 --- 在这之前先初始化UICollectionViewFlowLayout实例对象#import @interface BCView : UIView@property(nonatomic,strong)UICo...
分类:其他好文   时间:2015-07-31 17:55:08    阅读次数:132
iOS开发- UICollectionView详解+实例
本章通过先总体介绍UICollectionView及其常用方法,再结合一个实例,了解如何使用UICollectionView。UICollectionView 和 UICollectionViewController 类是iOS6 新引进的API,用于展示集合视图,布局更加灵活,可实现多列布局,用法...
分类:移动开发   时间:2015-07-29 15:48:45    阅读次数:136
UICollectionViewFlowLayout and UICollectionView
初始化://初始化布局类(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
UIKit-3347.44.2/UICollectionView.m:3443
1 Assertion failure in -[UICollectionView _dequeueReusableViewOfKind:withIdentifier:forIndexPath:viewCategory:], /SourceCache/UIKit_Sim/UIKit-3347.44....
分类:其他好文   时间:2015-07-22 17:55:47    阅读次数:83
【xib】加载的一些问题,以UICollectionView 为例
xib 用不好在开发中很容易制造各种crash,issue像1.[CUINamedImage collectionView:numberOfItemsInSection:]: unrecognized selector sent to instance 0x8c9a6d02.*** Assertio...
分类:其他好文   时间:2015-07-21 12:06:20    阅读次数:200
使用CSStickyHeaderFlowLayout实现头部固定的CollectionView
最近流行的一种界面效果,是瀑布流的header固定,也叫sticky header或者parallax。对于UITableView,可以比较方便地让table header固定,但是对于UICollectionView,原生的iOS API比较难以实现。本文推荐一个开源组件,专门用于实现这种效果...
分类:Web程序   时间:2015-07-21 06:49:39    阅读次数:232
488条   上一页 1 ... 31 32 33 34 35 ... 49 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!