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
use the method selectDate with scrollToDate set to YES for a date inside the same month
the view doesn't scroll to the current date because of line 1212 in the FSCalendar.m file:
if (_pagingEnabled && ![_currentPage fs_isEqualToDateForMonth:date]) {
// here is the scrolling behaviour
}
The method checks if the current page has changed its month, but since we are in the FSCalendarScopeWeek, it makes sense to check if the current page has changed its week.
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
The method checks if the current page has changed its month, but since we are in the FSCalendarScopeWeek, it makes sense to check if the current page has changed its week.
The text was updated successfully, but these errors were encountered: