i'm using FSCalendar library to make calendar on my app, but how to disable specific date in calendar.
for example if i have data 2017-04-30
30 April 2017 can't be selected.
Any idea how to make this?
i'm using FSCalendar library to make calendar on my app, but how to disable specific date in calendar.
for example if i have data 2017-04-30
30 April 2017 can't be selected.
Any idea how to make this?
You can use FSCalendar delegate method,
func calendar(_ calendar: FSCalendar, shouldSelect date: Date, at monthPosition: FSCalendarMonthPosition) -> Bool
{
if(date == your date)
{
return false
}
else
{
return true
}
}
Please implement **
-calendar:shouldSelectDate:
and
-calendar:appearance:titleDefaultColorForDate:.
The DelegateAppearanceExample and StoryboardExample might help you with the question. Hope this helps.