效果:
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
// AppDelegate.m// UI1_UICollectionView//// Created by zhangxueming on 15/7/16.// Copyright (c) 2015年 zhangxueming. All rights reserved.//#import ...
分类:
其他好文 时间:
2015-07-16 21:54:57
阅读次数:
142
直接上代码://
// RootViewController.m
//
//#import "RootViewController.h"
#import "CollectionViewCell.h"
@interface RootViewController ()@property (non...
分类:
其他好文 时间:
2015-07-14 11:44:39
阅读次数:
127
UICollectionView 和 UICollectionViewController 类是iOS6 新引进的API,用于展示集合视图,布局更加灵活,可实现多列布局,用法类似于UITableView 和 UITableViewController 类。使用UICollectionView 必须实...
分类:
移动开发 时间:
2015-07-13 15:23:44
阅读次数:
198
专业九宫格开发好几年。。。 必须使用这控件
这里以某易的“ 产品推荐 ”界面做介绍。
一、UICollectionView的使用
1、注册cell(告诉collectionView将来创建怎样的cell)
[self.collectionView registerClass:[UICollectionViewCell class] forCellWithReu...
分类:
移动开发 时间:
2015-07-13 12:18:43
阅读次数:
236
1、遵守协议2、创建UICollectionViewFlowLayout * layout = [[UICollectionViewFlowLayout alloc]init]; layout.minimumInteritemSpacing = 10; //最小item之间的间距 layout.mi...
分类:
其他好文 时间:
2015-07-08 20:19:30
阅读次数:
119