I am working on calendar implementation.
I want current and past dates to be selectable, but not future dates, as my application only requires current and past dates.
How do I disable the selection of future dates in a calendar?
I am working on calendar implementation.
I want current and past dates to be selectable, but not future dates, as my application only requires current and past dates.
How do I disable the selection of future dates in a calendar?
When a date is selected the JTAppleCalender view's delegate method
didSelectDate
will be getting called.So you could handle your date selection inside this method like,