-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
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
Can't advance to February when Jan 29 or 30 is selected. #33
Comments
Thanks for the feedback. Do you have a fix that you'd like to suggest? |
The source of the bug is the use of dateBySubtractingDays, passing it the number of days in the current month. Since all months don't have the same number of days, you end up with problems. I had my own category on NSDate that performed various date calculations, so I used them to get around this. Here is that solution. Instead of the 3 lines noted above, use this:
where dateAtStartOfMonth and dateByAddingNumberOfMonths are defined like this:
I didn't delve into it enough to figure out if there was a fix using the NSCalendar+DateManipulation category. |
Your comment noting that "all months don't have the same number of days" was on target. I believe that ticking the month forward first before subtracting the days fixes the problem. The logic of "subtract x days of the month except one" should work, but x days of the month needs be calculated using the target month, not the month we're jumping from. The original code looked like this, as you noted above:
The reality is that it should look like this:
See the difference? It seems to solve the problem. |
Fixed in 8cdc4ed. |
In CKCalendarView, if Jan 29th or 30th is selected and you tap the forward button, you do not advance to February. Instead, Jan 30th is selected.
The problem is this calculation in forwardTapped:
The text was updated successfully, but these errors were encountered: