Questions tagged [uicollectionreusableview]

The UICollectionReusableView class defines the behavior for all cells and supplementary views presented by a collection view.Available in iOS 6.0 and later. It should be tag only issues related with [tag:uicollectionreusableview].

UICollectionReusableView : Reusable views are so named because the collection view places them on a reuse queue rather than deleting them when they are scrolled out of the visible bounds. Such a view can then be retrieved and repurposed for a different set of content.This is declared in Apple's UIKit framework and available in iOS 6.0 and later

This class is intended to be subclassed. Most methods defined by this class have minimal or no implementations. You are not required to override any of the methods but can do so in cases where you want to respond to changes in the view’s usage or layout.

Source: UICollectionReusableView Class Reference

Related tags:

Related Stack Overflow questions:

  1. Removing empty space, if the section header is hidden in the UICollectionView

  2. How to detect scrolling to a new section in a UICollectionView?

183 questions
0
votes
2 answers

UICollectionView Footers. Read the docs, still can't get one to show. Must be done programmatically

I'm trying to add supplemental footers into a UICollectionView. It seems like I'm hitting all the proper methods according to Apple's documentation but for some reason the: - (UICollectionReusableView *)collectionView:(UICollectionView…
0
votes
1 answer

Reload UICollectionViewCell from within cellForItemAtIndexPath

What is the best way to retry a failed image download in cellForItemAtIndexPath? I have a collection view that can show about 20 80x80 thumbnail images. I'm using SDWebImage to download and cache images in the cellForItemAtIndexPath method, but I've…
0
votes
1 answer

iOS6 UIStoryboard how to add a UICollectionReusableView to a UICollectionView object?

I'm running into a silly issue when working with a UICollectionView - I've added a "UICollectionReusableView" by dragging it to within the UICollectionView at the top position. I'm expecting that this is a kind of a header that would be visible…
Alex Stone
  • 41,555
  • 51
  • 213
  • 379
1 2 3
12
13