标签:UICollectionView
UICollectionView滚动到指定cell的机制问题
使用这个方法 collectionView.contentOffset = CGPointMake(self.view.bounds.size.width index, 0);使其滚到对应的cell,为什么会先调用这个方法[collectionView.delegate scrollViewDidEndDecelerating:collectionVie……
09-20 立刻查看
关于UICollectionView横向滑动分页的问题
在UICollectionView里面-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{ return 5; } 自定义好cell后正常显示了,但是横向显示的时候,本人本想的是分成两页,第一页里面放四个……
03-22 立刻查看
UICollectionView使用reloadData()方法之后,Cell 里面的控件报错找不到
func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell{ NSLog("\(indexPath.row)") let col……
02-01 立刻查看