gpt4 book ai didi

ios - 如何在 UIDatePicker 中隐藏日期

转载 作者:行者123 更新时间:2023-12-01 18:05:55 25 4
gpt4 key购买 nike

如何在 UIDatePicker 中隐藏日期并在 UIDatePicker 中添加完成按钮。

enter image description here

最佳答案

使用 UIDatePicker 无法做到这一点,您必须使用自定义库或您自己创建的自定义 View 。

使用这个库 MonthYearPickerView-Swift :

MonthYearPickerView.swift 文件添加到您的项目并使用:

let monthYearPickerView = MonthYearPickerView()
monthlyPickerView.onDateSelected = { (month: Int, year: Int) in
let string = String(format: "%02d/%d", month, year)
NSLog(string) // should show something like 05/2015
}
monthYearPickerView.frame = CGRect(frame)
view.addSubview(monthYearPickerView)

注意:在 PickerView 顶部添加您自己的工具栏。

输出:

enter image description here

希望对您有所帮助。

关于ios - 如何在 UIDatePicker 中隐藏日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44559014/

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