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

Bottomsheet 1.4.0

Bottomsheet 1.4.0

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Feb 2017
SwiftSwift Version 3.0
SPMSupports SPM

Maintained by hryk224.




  • By
  • hyyk224

BottomSheet

Component which presents a dismissible view from the bottom of the screen

Requirements

  • iOS 9.0+
  • Swift 3.0+
  • ARC

install

import

import Bottomsheet

Usage

let controller = Bottomsheet.Controller()

// Adds View
let view = UIView
controller.addContentsView(view)

// Adds NavigationBar
controller.addNavigationbar { [weak self] navigationBar in
    // navigationBar
}

// Adds CollectionView
controller.addCollectionView { [weak self] collectionView in
    // collectionView
}

// Adds TableView
controller.addTableView { [weak self] tableView in
    // tableView
}

// customize
controller.overlayBackgroundColor = UIColor(red: 255, green: 0, blue: 0, alpha: 0.3)
controller.viewActionType = .tappedDismiss
controller.initializeHeight = 200

Acknowledgements

License

This project is made available under the MIT license. See LICENSE file for details.