项目作者: zhubinchen

项目描述 :
iOS下拉菜单,也可以实现类似NSComboBox的效果
高级语言: Shell
项目地址: git://github.com/zhubinchen/DropDownMenu.git
创建时间: 2016-03-09T05:34:06Z
项目社区:https://github.com/zhubinchen/DropDownMenu

开源协议:MIT License

下载


ZHDropDownMenu

cheng4741@qq.com/ZHDropDownMenu"">CI Status
Version
License
Platform

Example

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

Requirements

  • Swift 4.0
  • iOS 8+

Useage

  1. drag a view into Storyboard, and set its class to ZHDropDownMenu

  1. set options & other properties

    1. menu.options = ["1992","1993","1994","1995","1996","1997","1998"]//设置下拉列表项数据
    2. menu.defaultValue = "1992" //设置默认值
    3. menu.editable = false //禁止编辑
    4. menu.showBorder = false //不显示边框
    5. menu.delegate = self //设置代理
  1. Implement the delegate

    1. //选择完后回调
    2. func dropDownMenu(menu: ZHDropDownMenu!, didChoose index: Int) {
    3. print("\(menu) choosed at index \(index)")
    4. }
    5. //编辑完成后回调
    6. func dropDownMenu(menu: ZHDropDownMenu!, didInput text: String!) {
    7. print("\(menu) input text \(text)")
    8. }

Installation

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

  1. pod 'ZHDropDownMenu'

Author

cheng4741@qq.com

License

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