Skip to content

Commit

Permalink
Updated collection view documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
soffes committed Oct 17, 2011
1 parent 3cb6fbe commit 0e420a5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions SSToolkit/SSCollectionView.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ typedef enum {
/**
Returns a reusable collection view item object located by its identifier.
@param identifier A string identifying the cell object to be reused.
@param identifier A string identifying the item object to be reused.
@return A `SSCollectionViewItem` object with the associated identifier or nil if no such object exists in the
@return A `SSCollectionViewItem` object with the associated identifier or `nil` if no such object exists in the
reusable-item queue.
*/
- (SSCollectionViewItem *)dequeueReusableItemWithIdentifier:(NSString *)identifier;
Expand All @@ -150,7 +150,8 @@ typedef enum {
@param indexPath The index path locating the item in the receiver.
@return An object representing a cell of the table or nil if the cell is not visible or indexPath is out of range.
@return An object representing an item of the collection or `nil` if the item is not visible or `indexPath` is out of
range.
@see indexPathForItem:
*/
Expand All @@ -161,7 +162,7 @@ typedef enum {
@param item An item object of the collection view.
@return An index path representing the row and section of the cell or nil if the index path is invalid.
@return An index path representing the row and section of the item or `nil` if the index path is invalid.
@see itemPathForIndex:
*/
Expand Down

0 comments on commit 0e420a5

Please sign in to comment.