The UICollectionView class manages an ordered collection of data items and presents them using customizable layouts.
I am facing a nightmare of a crash during performBatchUpdates on a collection view. The problem is basically this: I …
ios iphone uicollectionview performbatchupdatesI have a basic grid in a UICollectionView. It's a simple 2 column, multiple row layout using the UICollectionViewDelegateFlowLayout. When a …
ios uicollectionview uicollectionviewcell uicollectionviewlayoutI'm building a UICollectionView and my custom cells will contain two labels and one image. Each image is downloaded asynchronously …
ios uicollectionview uicollectionviewcellMy problem is really simple. I would like to animate a cell within a collectionView. Indeed, I would like to …
swift animation swift3 uicollectionview cellI have a UICollectionView within a UIViewController. In the collectionView cellForItemAtIndexPath: method, it creates a series of custom cells based …
pdf uicollectionview uicollectionviewcellI am having trouble with reuse cells and UICollectionView on iOS 7. My code works fine on iOS 6 but in iOS 7 …
cocoa-touch ios7 uicollectionview reusability uicollectionviewcellHow do I add UIRefreshControl to bottom of a UIColloectionView? That means how does it work when It comes to …
ios objective-c uicollectionview uirefreshcontrolI have a collection view where you can select multiple cells to delete. This means that if multiple cells are …
ios swift uicollectionview realm realm-listI'm trying to add UIViews between my UICollectionViewCells in my UICollectionView and I don't know how I could do that. …
iphone ios objective-c uicollectionview uicollectionviewcellHere is my code: import UIKit import RxSwift import RxCocoa import RxOptional class ViewController: UIViewController { @IBOutlet weak var collectionView: UICollectionView! …
ios swift uicollectionview rx-swift