CocoaPods trunk is moving to be read-only. Read more on the blog, there are 13 months to go.

TopDrawer 0.1.3

TopDrawer 0.1.3

Maintained by Justin Kaufman.



TopDrawer 0.1.3

  • By
  • Justin Kaufman

TopDrawer

Version License Platform

A top drawer that can be pulled up/down over the screen, written in Swift.

Features

  • Drawer visibility can be toggled on/off
  • Stays on top of the visible hierarchy
  • Does not prevent interaction with content underneath the drawer (as is the case with modal drawers)

Installation

Cocoapods

TopDrawer is available through CocoaPods. To install it, add the following to your Podfile:

pod 'TopDrawer', '~> 0.1.3'

Carthage

To install via Carthage, add the following to your Cartfile:

github "JUSTINMKAUFMAN/TopDrawer" "0.1.3"

Usage

The top drawer can be added to any UIViewController simply by initializing an instance of TopDrawer and adding it as a subview. For example:

class ViewController: UIViewController {
    let topDrawer = TopDrawer()

    init() {
        super.init(nibName: nil, bundle: nil)
        view.addSubview(topDrawer)
    }

    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
}

Note that you should not add your own auto-layout constraints to TopDrawer (layout is handled internally by adjusting the frame position/visibility).

See the sample project for a basic implementation.

Author

Justin Kaufman, [email protected]

License

TopDrawer is available under the MIT license. See the LICENSE file for more info.