calendarKit day view swipe detection in day view swift
Problem:
I want to detect the swipe that user swiped the dayview to next or previous week.How can i achieve that?.No methods are detected for delegate options.
Solution:
func eventsForDate(_ date: Date) -> [CalendarKit.EventDescriptor] {
if (calenderView.displayDate?.sta
dateSelected(date:date.localDa
loadData(date: date.localDate()) // use your own function to load the data with the weekview
} else {
}
return []
}
Comments
Post a Comment