gpt4 book ai didi

swift - 如何在 FSCalendar Libary Swift 中禁用特定日期

转载 作者:行者123 更新时间:2023-11-28 09:52:49 26 4
gpt4 key购买 nike

我正在使用 FSCalendar在我的应用程序上制作日历的库,但如何禁用日历中的特定日期。

例如,如果我有数据 2017-04-30 2017 年 4 月 30 日无法选择。

知道怎么做吗?

最佳答案

您可以使用 FSCalendar 委托(delegate)方法,

func calendar(_ calendar: FSCalendar, shouldSelect date: Date, at monthPosition: FSCalendarMonthPosition) -> Bool
{
if(date == your date)
{
return false
}
else
{
return true
}
}

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

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