JHDropDownMenu 2.0.0

JHDropDownMenu 2.0.0

Maintained by tokijh.



  • By
  • tokijh

JHDropDownMenu

License Swift 4 CI Status Version License Platform

Introduction

Dropdown menu in UIView by extension

sample

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Installation

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

pod 'JHDropDownMenu'

Usage

import JHDropDownMenu

Now you can use dropdown any UIView (maybe)

UIView().dropdown.set(items: [[...]])

Also you can customize dropdown menu using option

UIView().dropdown
    .option(id: Selection.uiViewDropDown.rawValue)
    .option(delegate: self)
    .option(selectorSize: (width: 300, height: nil))
    .option(marginVertical: 10)
    .set(texts: texts, sectionTitles: sectionTitles)

Options

  • id: String? Key for detect selector in delegate. default : nil
  • isActiveTapGesture: Bool active tap gesture. default : true
  • dismissOnSelected: Bool dismiss when selected. default : true
  • isOpen: Bool open status. default : false
  • animate: Bool animate when opening and closing. default: true
  • automaticRelocation: Bool auto resize when open. default : true
  • contentMode: JHDropDownMenu.ContentMode content direction. cases are 'center', 'left', 'right'. default : center
  • selectorSize: (width: CGFloat?, height: CGFloat?) list(selector) size. default : (view.frame.width, 200)
  • marginVertical: CGFloat margin with view and list(selector). default : 0
  • blindView: UIView? blindView when opening dropdown.
  • delegate: JHDropDownDelegate?

Delegate

  • func willChange(_ dropdown: JHDropDown, id: String?, view: UIView, isOpen: Bool)

  • func didChange(_ dropdown: JHDropDown, id: String?, view: UIView, isOpen: Bool)

  • func didSelectRowAt(_ dropdown: JHDropDown, id: String?, view: UIView, indexPath: IndexPath)

Customize

You can access listView (UITableView) by dropdown

UIView().dropdown.listView

Also welcome to PR whenever.

Author

Thanks to

License

JHDropDownMenu is available under the MIT License See the LICENSE file for more info.