使用UICollectionView实现新特性界面关于CollectionView是一个很好用的控件,或许你还没有接触过,但是你肯定接触过UITableView,它可以实现UITableView实现不了的功能,知识UITableView使用的地方不不是很难,而CollectionView如果你只是简...
分类:
移动开发 时间:
2015-08-16 00:38:12
阅读次数:
774
CGPoint offset = self.collectionView.contentOffset; (self.collectionView.contentOffset.y > 0) ? offset.y-- : offset.y++; [self.collectionView setConte...
分类:
移动开发 时间:
2015-08-12 13:10:39
阅读次数:
148
UIImageView 圆形的两种方法1、cornerRadius (tableView,collectionView尽量避免使用,影响性能)//想要圆角 cornerRadius必须是 imageview高的一半imageView.layer.cornerRadius = imageView.fr...
分类:
其他好文 时间:
2015-08-09 15:25:58
阅读次数:
110
collectionView的使用跟tableview差不多,比table更强大(ios6.0以后)1、需实现的协议2、标识cell和header、footerstatic NSString* cellIdentifier = @"identifier";static NSString* cellS...
分类:
其他好文 时间:
2015-08-06 10:43:22
阅读次数:
141
效果:
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
今天写代码遇到一个特别诡异的问题,就是在我的cell中需要两个手指点击才可以选中
先介绍下我的视图结构ViewController->UITableView->自定义Cell
产生这样的原因是,我在ViewController.view上加了一个手势,导致了Cell不能点按的结果,把那个手势移除掉就好了
同理CollectionView也不可以加
虽然解决了问题,但是我还有个疑问,View...
分类:
移动开发 时间:
2015-07-21 20:36:53
阅读次数:
153
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
IOS - xib(Interface Builder,view)
- can't change view size(view不能改变大小问题)
今天在试着swift语言写个demo,,其中遇到了这个问题,分享一下
当我们自定义tableview、collectionview的cell,也有时候我们要自定义窗口xib,但创建xib后,其height、width不可修改。
...
分类:
移动开发 时间:
2015-07-20 19:33:53
阅读次数:
161