Top "Uicollectionview" questions

The UICollectionView class manages an ordered collection of data items and presents them using customizable layouts.

Could not cast value of type 'UICollectionViewCell'

I use a custom CollectionViewCell in my Storyboard. When I start the app I get this message: Could not cast …

xcode swift uicollectionview uicollectionviewcell
UICollectionView, simply fit cell to width?

Here's a simple UICollectionView in yellow The red arrow sets the width of the cell. (TBC: clicking on the pink …

ios uicollectionview uicollectionviewcell
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 …

ios xcode uicollectionview uicollectionviewcell
UICollectionViewCells not appearing in a UICollectionView

As the title suggests I have a UICollectionView that is hooked up to a UIViewController through IB. I have a …

ios uicollectionview uicollectionviewcell
Reloading a UICollectionView using reloadData method returns immediately before reloading data

I need to know when reloading a UICollectionView has completed in order to configure cells afterwards (because I am not …

objective-c-blocks uicollectionview uicollectionviewcell completionhandler
UICollectionView Decoration View

Has anyone implemented a decoration view for the iOS 6 UICollectionView? It's impossible to find any tutorial on implementing a decoration …

ios ios6 uicollectionview
How to create a centered UICollectionView like in Spotify's Player

I am have a lot of difficulty trying to create a UICollectionView like in Spotify's Player that acts like this: …

ios objective-c uiscrollview uicollectionview uicollectionviewlayout
Start UICollectionView at a specific indexpath

I currently have a collection view that does horizontal paging where each cell is fullscreen. What I want to do …

ios paging uicollectionview
Placing a margin around each edge of the UICollectionView

When the UICollectionView is populated with items they always go right to the edges of the UICollectionView like so: --------------- |…

ios uicollectionview uicollectionviewlayout
UICollectionViewCell subclass init never run

I have added a collection view in viewDidLoad like this... self.collectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, 10, 10) collectionViewLayout:flowLayout]; self.collectionView.…

ios uicollectionview uicollectionviewcell