我有一个UIDatePicker应该只显示特定的日期,如所有的星期日和星期一,并禁用所有其他日期。用户只能从本周,下周,下周到2020年的一周中选择周日和星期一。 。

UIDatePicker甚至任何自定义控件是否有可能?

最佳答案

我建议您这样使用:

从下面的代码中,您将获得2016-2018年所有星期日的日期,

let cal = Calendar.current
// Get the date of 2 years ago today
let stopDate = cal.date(byAdding: .year, value: -2, to: Date())!

// We want to find dates that match on Sundays at midnight local time
var comps = DateComponents()
comps.weekday = 1 // Sunday

// Enumerate all of the dates
cal.enumerateDates(startingAfter: Date(), matching: comps, matchingPolicy: .previousTimePreservingSmallerComponents, repeatedTimePolicy: .first, direction: .backward) { (date, match, stop) in
    if let date = date {
        if date < stopDate {
            stop = true // We've reached the end, exit the loop
        } else {
            print("\(date)") // do what you need with the date
        }
    }
}


逻辑很简单。在所需的dateFormat中创建一个数组,并在pickerView中进行显示,最终将为您使用datePicker

希望这可以帮助。

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

10-10 20:08