UICollectionViewCell is a class from UIKit framework in iOS.
Is there a way to allow multiple selection only for a specific section? The code below affects all sections. [self.…
ios uicollectionview uicollectionviewcell didselectrowatindexpathI 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 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 uicollectionviewlayoutMy SuerClass is UICollectionViewCellwhich has a property: var selected: Bool My class is MyClass : UICollectionViewCell { func setSelected(selected: Bool) { super.…
ios swift inheritance overriding uicollectionviewcellObjective I wanna place my (BusinessViewTableHeader: UIView) as tableView header: tableView.tableHeaderView = BusinessViewTableHeader.instanceFromNib() as! BusinessViewTableHeader Inside BusinessViewTableHeader there is …
ios swift uiview uicollectionview uicollectionviewcellI'm trying to pin an UILabel to it's parent cell. I added four constraints (top, leading, trailing, bottom) which works …
ios iphone uicollectionview autolayout uicollectionviewcellWhen iOS 7.1 sends my viewController: - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath The indexPath object does not recognize the …
ios uicollectionview uicollectionviewcell nsindexpathI want to make a usual horizontalScrolling flowLayout UICollectionView with estimatedItemSize and preferredLayoutAttributesFittingAttributes in cell. But there is something wrong …
ios objective-c uicollectionview uicollectionviewcell