func calendar(_ calendar: JTAppleCalendarView, headerViewForDateRange range: (start: Date, end: Date), at indexPath: IndexPath) -> JTAppleCollectionReusableView {
let header = calendar.dequeueReusableJTAppleSupplementaryView(withReuseIdentifier: "calendarHeader", for: indexPath) as!CalendarHeader
header.monthLabel.text = monthName
return header
}
Я хочу получить название месяца, чтобы оно отображалось в заголовке, чтобы название месяца могло прокручиваться вместе с календарем по вертикали. Как я должен получить это?
Спасибо, что помогли мне