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
Bug 1:
Changing the scope several times will increase more and more the calendar size.
- (IBAction)btnTest:(id)sender { if ([self.fsCalendar scope] == FSCalendarScopeWeek) { [self.fsCalendar setScope:FSCalendarScopeMonth]; } else { [self.fsCalendar setScope:FSCalendarScopeWeek]; } }
Bug 2:
Changing the scope with animated: YES, will crash the app if you try to change again in the middle of an animation.
animated: YES
- (IBAction)btnTest:(id)sender { if ([self.fsCalendar scope] == FSCalendarScopeWeek) { [self.fsCalendar setScope:FSCalendarScopeMonth animated:YES]; } else { [self.fsCalendar setScope:FSCalendarScopeWeek animated:YES]; } }
The text was updated successfully, but these errors were encountered:
Both happened in the latest version?
Sorry, something went wrong.
@WenchaoIOS yeah - FSCalendar (1.8.1)!
This should've been fixed, but without release. Mind give it a try? Or just see the "FSCalendarScopeExample"?
@WenchaoIOS I'll test and I'll keep in touch.
@131bba5
No branches or pull requests
Bug 1:
Changing the scope several times will increase more and more the calendar size.
Bug 2:
Changing the scope with
animated: YES
, will crash the app if you try to change again in the middle of an animation.The text was updated successfully, but these errors were encountered: