CalendarView icon indicating copy to clipboard operation
CalendarView copied to clipboard

On every November Month second week days sunday and Monday are same value -time change issue

Open jantony-ps opened this issue 9 years ago • 1 comments

On every November Month second week days sunday and Monday are same value -time change issue simulator screen shot oct 27 2016 3 27 13 pm

jantony-ps avatar Nov 16 '16 20:11 jantony-ps

@jantonywest Curious if you found a solution to this?

Edit: Fixed by changing setWeeks() in MonthView to:

func setWeeks() { if weeks.count > 0 { let numWeeks = Int(numDays / 7) let firstVisibleDate = date.startOf(.Months).endOf(.Days).subtract(startsOn - 1, .Days).startOf(.Days) for i in 1...weeks.count { let firstDateOfWeek = firstVisibleDate.endOf(.Days).add(7*(i-1), .Days) let week = weeks[i - 1] week.month = date week.date = firstDateOfWeek week.isHidden = i > numWeeks } } }

plastus avatar Aug 30 '17 13:08 plastus