微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

表格视图单元格重用打破了表格视图单元格中的 FSCalendar

如何解决表格视图单元格重用打破了表格视图单元格中的 FSCalendar

我会尽量简洁地提出这个问题。

我有表格视图单元格,每个单元格中都有一个日历元素来显示数据。当我滚动、获取新数据并且单元格准备重复使用时,它们会发生变化。

  1. Here is how the table view looks like originally. This is correct!

  2. Then I scroll down and the calendar view is repeated,although it is incorrect and my code fills in other dates.

  3. Then I scroll up. The original view is gone and reset!

这是我的 Post Cell 中的一些代码

extension PostCell: FSCalendarDelegateAppearance,FSCalendarDelegate,FSCalendarDataSource {
    
    func calendar(_ calendar: FSCalendar,appearance: FSCalendarappearance,fillDefaultColorFor date: Date) -> UIColor? {
        if let stringDates = stringDates,stringDates.contains(formatter.string(from: date)) {
            return UIColor.systemteal.withAlphaComponent(0.5)
        }
        return UIColor.clear
    }
}

我在 cellForRow 方法中设置了单元格的委托。我尝试在 prepareForReuse() 期间重新加载日历,但这没有用。任何帮助将不胜感激。

我认为这与此有关:https://fluffy.es/solve-duplicated-cells/,但我不确定如何为我的用例制定解决方案。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。