gpt4 book ai didi

ios - 如何在 Swift 3 中制作下拉菜单

转载 作者:行者123 更新时间:2023-11-28 18:08:43 26 4
gpt4 key购买 nike

如何使用swift 3在iOS中实现下拉菜单,如下图所示: enter image description here

我搜索了 SO 问题,但他们更喜欢使用 UIPicker,但我希望实现这一点。是否可以使用table view来实现这种类型?

我需要从下拉菜单中选择日期:

enter image description here

如何在 TableView 中显示日期,如下所示?

最佳答案

dropDown 有很多 Demo 和示例,当用户单击按钮时,您可以通过使用 tableView 仅使用 tableview 来实现。 或者你可以用这个 https://cocoapods.org/pods/DropDown

let dropDown = DropDown()

// The view to which the drop down will appear on
dropDown.anchorView = view // UIView or UIBarButtonItem

// The list of items to display. Can be changed dynamically
dropDown.dataSource = ["Car", "Motorcycle", "Truck"]

Optional properties:

// Action triggered on selection
dropDown.selectionAction = { [unowned self] (index: Int, item: String) in
print("Selected item: \(item) at index: \(index)")
}

// Will set a custom width instead of the anchor view width
dropDownLeft.width = 200
Display actions:

dropDown.show()
dropDown.hide()

关于ios - 如何在 Swift 3 中制作下拉菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44615604/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com