You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I am using JTCalendar and its UI is fully customisable and its very good library. When I use current month as starting month then previous months were not available, only another next to it months are available only. And when I used start date: "1-1-2017" and end date: "31-12-2017" than calendar starts with "1-1-2017" and I want to start from current month and with previous months available. And on didSelect method, selected method is always wrong
The text was updated successfully, but these errors were encountered:
_todayDate = [NSDate date];
// Min date will be 12 month before today
_minDate = [_calendarManager.dateHelper addToDate:_todayDate months:-12];
// Max date will be 12 month after today
_maxDate = [_calendarManager.dateHelper addToDate:_todayDate months:12];
Please see the above lines as reference, I am using it to set the range to two years (12 months past and 12 months in future, and current month is the selected point. You can do it in viewDidLoad.
Hello,
I am using JTCalendar and its UI is fully customisable and its very good library. When I use current month as starting month then previous months were not available, only another next to it months are available only. And when I used start date: "1-1-2017" and end date: "31-12-2017" than calendar starts with "1-1-2017" and I want to start from current month and with previous months available. And on didSelect method, selected method is always wrong
The text was updated successfully, but these errors were encountered: