You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed JTCalendar into my project through Cocoapods and it was working till swift 4.0. After swift 4.2 migration it was not working. Delegates or datasources are not firing.
I updated JTCalendar to version 2.2. but still it was not working. Could you please suggest a workaround.
The text was updated successfully, but these errors were encountered:
Hi,
first check the delegate and datasource are not nil, I didn't update the lib for a while.
You may have to add @objc annotations, it's strange but you can try something like this:
@objc(calendar:didTouchDayView) // not sure about this but something like this
- (void)calendar:(JTCalendarManager *)calendar didTouchDayView:(JTCalendarDayView *)dayView
I put this on didTouchDayView method but you have to try to put it on every methods.
Hi Jonathan,
I installed JTCalendar into my project through Cocoapods and it was working till swift 4.0. After swift 4.2 migration it was not working. Delegates or datasources are not firing.
I updated JTCalendar to version 2.2. but still it was not working. Could you please suggest a workaround.
The text was updated successfully, but these errors were encountered: