34
votes
4answers
12k views

UICollectionView's cell disappearing

What's happening Currently I have an application that uses two UICollectionViews inside a UITableView. This way I create a Pulse News look like application. My problem with this is that sometimes the ...
12
votes
2answers
4k views

UICollectionView not removing old cells after scroll

I have a UICollectionView with a grid of images. When you tap on one, it opens up the grid and shows a subview with some details. Like this: I open up the grid in my UICollectionViewLayout by ...
0
votes
1answer
2k views

UICollectionView layout malfunction

I'm building a dictionary app, and one of the features is that you can "drill down" into a definition. You look up a word, there's a word in the definition you don't understand, so you tap that word ...
2
votes
2answers
939 views

uicollectionview Loads wierdly

I created a collection view with custom collection cell.set with flowlayout as UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc] init]; [flowLayout ...
0
votes
2answers
1k views

UICollectionViewCells with UICollectionViewFlowLayout - strange layout happening

I am currently testing in xcode a UICollectionView with just one horizontal row like a kinda cover flow. Basically I have my own Custom Cell class and xib file for the cell and then on each cell I am ...
2
votes
2answers
390 views

UICollectionViewFlowLayout not line breaking correctly

I have subclassed flow layout and set it as my collectionViewLayout on my collection view. Then I set up the layout as follows: - (id) init { if(self = [super init]) { ...
0
votes
4answers
575 views

Reduce space between cells in a collectionView

There's a huge space between the cells in the collectionView as shown in the image below. How can i reduce it. - (CGSize)collectionView:(UICollectionView *)collectionView ...
0
votes
1answer
255 views

Wrapping cells in UICollectionview iOS 8

I have the same problem with this question. I already tried the solution but it is not called. Where should I implement or call the method or subclass of UICollectionViewFlowLayout. Where should I ...
0
votes
0answers
90 views

UICollectionViewLayoutAttributes not being displayed by UICollectionView

So as titled, there're some situation that I found my cells not being displayed. Here's a video to demonstrate the issue. And there's the sample project. I've a subclass of ...
0
votes
1answer
82 views

UICollectionViewCell Not drawing cell on indexpath.row == 0

See the image attached. I'm using a fairly basic UIFlowLayout subclass to accompany the view, but no matter what I've tried, it decides that it doesn't need to draw cell 0, However if I scroll down ...