The UICollectionViewLayout class is an abstract base class that is used to generate layout information for a collection view.
I have subclassed UICollectionViewFlowLayout to get horizontal UICollectionView with paging like behavior. It works perfectly fine as long as UICollectionViewCell …
ios objective-c uicollectionview uicollectionviewcell uicollectionviewlayoutI'm trying to get a UICollectionView to display inside a modally presented view controller. The app is for iPad iOS 7. …
ios ipad uicollectionview uicollectionviewcell uicollectionviewlayoutI have a UICollectionView there is used differently depending on device orientation. The image describe what I have and what …
objective-c ipad uicollectionview uicollectionviewlayoutI 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'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 uicollectionviewflowlayoutI'm using a UICollectionView and need a global header and footer together with section headers. Both global header and footer …
ios uikit uicollectionview uicollectionviewlayoutI'm implementing a collection view whose items are sized based on the bounds of the collection view. Therefore when the …
ios uicollectionview uicollectionviewlayout