JUSTINMKAUFMAN / TopDrawer

A top drawer that can be pulled up/down over the screen

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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, jmkauf@gmail.com

License

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

About

A top drawer that can be pulled up/down over the screen

License:MIT License


Languages

Language:Swift 92.7%Language:Ruby 7.3%