The UICollectionView class manages an ordered collection of data items and presents them using customizable layouts.
I use a custom CollectionViewCell in my Storyboard. When I start the app I get this message: Could not cast …
xcode swift uicollectionview uicollectionviewcellHere's a simple UICollectionView in yellow The red arrow sets the width of the cell. (TBC: clicking on the pink …
ios uicollectionview uicollectionviewcellWhat's happening Currently I have an application that uses two UICollectionViews inside a UITableView. This way I create a Pulse …
ios xcode uicollectionview uicollectionviewcellAs the title suggests I have a UICollectionView that is hooked up to a UIViewController through IB. I have a …
ios uicollectionview uicollectionviewcellI need to know when reloading a UICollectionView has completed in order to configure cells afterwards (because I am not …
objective-c-blocks uicollectionview uicollectionviewcell completionhandlerHas anyone implemented a decoration view for the iOS 6 UICollectionView? It's impossible to find any tutorial on implementing a decoration …
ios ios6 uicollectionviewI 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 uicollectionviewlayoutI currently have a collection view that does horizontal paging where each cell is fullscreen. What I want to do …
ios paging uicollectionviewWhen the UICollectionView is populated with items they always go right to the edges of the UICollectionView like so: --------------- |…
ios uicollectionview uicollectionviewlayoutI 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