WenchaoD / FSCalendar

A fully customizable iOS calendar library, compatible with Objective-C and Swift
MIT License
10.59k stars 1.93k forks source link

Clear Selected dates #1365

Open justdan0227 opened 2 years ago

justdan0227 commented 2 years ago

Really easy question. How do I clear all selected dates?

ElvistLui commented 2 years ago
for (NSDate *date in self.calendar.selectedDates) {
    [self.calendar deselectDate:date];
}