The UICollectionView class manages an ordered collection of data items and presents them using customizable layouts.
I have a UICollectionView there is used differently depending on device orientation. The image describe what I have and what …
objective-c ipad uicollectionview uicollectionviewlayoutWhat is the best method to provide a footer for a UICollectionView that "sticks" to the bottom of the screen …
ios ios6 uicollectionview uicollectionreusableviewI have a horizontal UICollectionView. I want to make the cells overlap each other by a certain amount of 60 pixels …
iphone ios uicollectionview uicollectionviewcell uicollectionviewlayoutGoal: To animate the change of a cell's height and reposition surrounding cells. Scenario: Some cells in a collection view …
objective-c ios7 uicollectionview uicollectionviewcell uicollectionviewlayoutI'm writing a custom UICollectionViewFlowLayout and I've noticed that initialLayoutAttributesForAppearingItemAtIndexPath: and initialLayoutAttributesForAppearingDecorationElementOfKind:atIndexPath: will be called for all sections when …
objective-c ios6 uikit uicollectionview uicollectionviewlayoutI have a navigation controller, its root view controller is of type CollectionViewControllerA. Upon selecting an item, I have a …
ios uiscrollview uinavigationcontroller crash uicollectionviewI noticed that apps like Intagram uses UICollectionViews to display the feed of photos. I also noticed that the cells …
ios objective-c cocoa-touch afnetworking uicollectionviewI'm using in one of my apps UICollectionView, with custom cells but with default flow. Currently this view shows 3 cells …
ios iphone objective-c uicollectionview uicollectionviewlayoutFor UICollectionView's dynamic height cells we use, if let layout = self.collectionViewLayout as? UICollectionViewFlowLayout { layout.estimatedItemSize = UICollectionViewFlowLayoutAutomaticSize } with the proper …
swift uicollectionview uicollectionviewlayout ios12 uicollectionviewflowlayoutObjective I wanna place my (BusinessViewTableHeader: UIView) as tableView header: tableView.tableHeaderView = BusinessViewTableHeader.instanceFromNib() as! BusinessViewTableHeader Inside BusinessViewTableHeader there is …
ios swift uiview uicollectionview uicollectionviewcell