hisham93
Results
1
issues of
hisham93
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 am trying to remove "CalendarView.reloadData()" the...