I have been trying to change the tableview cell size when i change my FSCalendar scope from week to month or vice versa. This is working fine with calender.scope = .week
and contents are displaying correctly as required but the bounds of the calendar is not getting updated hence my cell size doesn't change it's height.
I did following for achieving my goal when i change my scope and reload the calendar.
func calendar(_ calendar: FSCalendar, boundingRectWillChange bounds: CGRect, animated: Bool) {
self.calenderView.frame.size.height = bounds.height
}
My Calendar View exits in the tableview cell and when the calendar changes it's scope, the cell size should also change but now it's not working.
Please help me.