我使用FSCalendar并尝试关闭过去的日期,但是我或关闭整个日历以选择日期或打开所有日期以进行选择。

我如何只能关闭今天的过去日期?

这应该通过以下方法完成:

func calendar(_ calendar: FSCalendar, shouldSelect date: Date, at monthPosition: FSCalendarMonthPosition) -> Bool {


}


我在这个问题上找到了很多答案,但是却找不到答案来编写代码。

最佳答案

FSCalendar具有委托方法。
您可以使用它们。

func calendar(_ calendar: FSCalendar, shouldSelect date: Date, at     monthPosition: FSCalendarMonthPosition) -> Bool{

}


-calendar:appearance:titleDefaultColorForDate:

关于ios - 在FSCalendar中关闭过去的日期,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48353906/

10-09 02:15