讲解 UICollectionView 的相关链接:http://blog.csdn.net/eqera/article/details/8134986为了实现不同尺寸屏幕的大小自适应,细节处理:(1)在 Main.storyboard 中,去掉勾选「Use Size Classes」(2)删除 L...
分类:
其他好文 时间:
2015-06-14 18:21:26
阅读次数:
370
在图片处理时,我们总会遇到一些内存优化的问题。?这里介绍的是其中一种内存优化处理方式。场景:App 运行很卡,然后我用 Instruments中的相关工具查看对象的内存占用情况,发现当图片加载到 UICollectionView 容器时, 工具中 Allocations 内存分配栏目,lifespa...
分类:
其他好文 时间:
2015-06-14 18:15:10
阅读次数:
183
1. 在storyboard中,拖出1个UICollectionViewController2. 新建file--Cocoa Touch Class,继承自UICollectionViewController,假设名字是CollectionDemo3. 在storyboard, 把刚才拖出来的UIC...
分类:
移动开发 时间:
2015-06-12 19:23:04
阅读次数:
313
在控制器中添加CollectionView在控制器的viewDidLoad方法中初始化CollectionViewstatic NSString *ID = @"collectionViewCell";- (void)viewDidLoad { [super viewDidLoad]; // ...
分类:
移动开发 时间:
2015-06-12 16:51:45
阅读次数:
123
MJParallaxCollectionViewhttps://github.com/mayuur/MJParallaxCollectionViewThis is a parallax for the cells inside UICollectionView. It gives us an eff...
分类:
其他好文 时间:
2015-06-09 23:16:33
阅读次数:
159
首先可以先自定义一个cell @interface CollectionViewCell : UICollectionViewCell 继承自UICollectionViewCell 并添加一个ImageView,用autolaytou固定 记得一定要在这里指定cell的可重用标示符,位置要对,并且...
分类:
其他好文 时间:
2015-06-08 20:00:30
阅读次数:
168
OC 3大回调模式使用总结(二)委托模式回调
1.委托模式回调
主要用于 UITableView(UITableViewController),UICollectionView,UIPickerView,UITextField,UITextField
这几类控件,是使用委托模式封装的,使用方法和按钮类的控件不一样
委托模式,实际上也是一种对自身状态的汇报机制,某个状态或者事...
分类:
其他好文 时间:
2015-06-03 13:48:32
阅读次数:
137
本文转载至http://www.cnblogs.com/wayne23/p/4013522.html初始化部分:UICollectionViewFlowLayout *flowLayout= [[UICollectionViewFlowLayout alloc]init];self.myCollec...
分类:
其他好文 时间:
2015-06-01 00:40:19
阅读次数:
102
肯定会有很多人遇到下面这样的问题。。。
其实我们只需要在 UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellIde
forIndexPath:indexPath];下面加这
for (UIView *view in cell.contentView.subv...
分类:
其他好文 时间:
2015-05-25 22:26:16
阅读次数:
562
1.自定义UICollectionViewCell在myCollectionViewCell.h中声明两个属性//// myCollectionViewCell.h// UICollectionView//// Created by City--Online on 15/5/25.// Co...
分类:
其他好文 时间:
2015-05-25 16:27:51
阅读次数:
175