We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if minimumDateForCalendar is not strictly start of day, selecting cells causes very strange behavior.
The text was updated successfully, but these errors were encountered:
我也遇到这个问题,在- (NSDate *)minimumDateForCalendar:(FSCalendar *)calendar;设置不会把minimumDate之前的日期置灰,左右滑动会滑动到2063年。 顺便测试下- (NSDate *)maximumDateForCalendar:(FSCalendar *)calendar;没有问题。 请问大神怎么解决?
Sorry, something went wrong.
workaround:
- (NSDate *)minimumDateForCalendar:(FSCalendar *)calendar { NSDate *minimumDate = [NSDate date]; //For example return [[NSCalendar currentCalendar] startOfDayForDate:minimumDate]; }
Better than setting hour、minute、seconds to zero of date. That's a great solution. 👍
No branches or pull requests
if minimumDateForCalendar is not strictly start of day, selecting cells causes very strange behavior.
The text was updated successfully, but these errors were encountered: