Skip to content
This repository has been archived by the owner on Apr 15, 2020. It is now read-only.

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jessesquires committed Jul 1, 2016
1 parent a2c4cf9 commit 02bdc22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
5 changes: 2 additions & 3 deletions Source/TitledSupplementaryView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@
import UIKit

/**
A `TitledSupplementaryView` is a `UICollectionReusableView` subclass with a single `UILabel`
intended for use as an analog to a `UITableView` header title (via `tableView(_:titleForHeaderInSection:)`).
A `TitledSupplementaryView` is a `UICollectionReusableView` subclass with a single `UILabel`.
It is intended for use as an analog to a `UITableView` header title.
These views can be used with `TitledSupplementaryViewFactory`.
*/
public final class TitledSupplementaryView: UICollectionReusableView {
Expand Down
6 changes: 1 addition & 5 deletions Source/TitledSupplementaryViewFactory.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,7 @@ public struct TitledSupplementaryViewFactory <Item>: ReusableViewFactoryProtocol
- returns: The configured `TitledSupplementaryView` instance.
*/
public typealias ConfigurationHandler = (view: TitledSupplementaryView,
item: Item?,
type: ReusableViewType,
collectionView: UICollectionView,
indexPath: NSIndexPath) -> TitledSupplementaryView
public typealias ConfigurationHandler = (view: TitledSupplementaryView, item: Item?, type: ReusableViewType, collectionView: UICollectionView, indexPath: NSIndexPath) -> TitledSupplementaryView


// MARK: Private Properties
Expand Down

0 comments on commit 02bdc22

Please sign in to comment.