1. 여러 날짜 선택하도록 설정값 변경
calendarView.allowsMultipleSelection = true
// 선택 날짜 갯수 제한
func calendar(_ calendar: FSCalendar, shouldSelect date: Date, at monthPosition: FSCalendarMonthPosition) -> Bool {
return calendar.selectedDates.count < 2
}
func calendar(_ calendar: FSCalendar, didSelect date: Date, at monthPosition: FSCalendarMonthPosition) {
var selectedDates = calendar.selectedDates
if selectedDates.count > 1 {
calendar.deselect(selectedDates.removeFirst())
}
}