Replies: 1 comment 5 replies
-
hmm, I'll check this part |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Have a look at
CalendarView.init(frame:date:style:years:)
. The code on line 91/92 will never assign the willSelectDate variable.That's because
self.delegate
is not yet set. The delegate can only be set after the constructor has run.This means that
CalendarDelegate.willSelectDate(_:type:)
will never be called.Beta Was this translation helpful? Give feedback.
All reactions