FSCalendar Inside UITableView

1.1k Views Asked by At

I'm using FSCalendar in tableview cell, calendar is working fine but their is an issue while reusing the cell by scrolling up the tableview to the calendar. The tableview became glitchy. Below is my code inside cell for row at indexPath:

let calendarCell = calendarTableView.dequeueReusableCell(withIdentifier: "calendarReuse")
let calendarView = calendarCell.viewWithTag(1) as! FSCalendar
calendarView.delegate = self
calendarView.dataSource = self
calendarView.register(DIYCalendarCell.self, forCellReuseIdentifier: "cell")
calendarView.reloadData()
return calendarCell

I'm trying to remove calendarView.reloadData() the table view is working fine, but the calendar not loading data anymore.

Find the link of the design here:

Design

0

There are 0 best solutions below