Я пытаюсь очистить DateCell в prepareForReuse
, но моя реализация не работает, когда был выбран DateCell
, содержащий Activities
.
У меня есть следующие настройки:
- Фиктивные данные только для даты 3 апреля и 4 апреля
- Если есть
activities
, то stackView
содержащие точки будут отображаться ниже даты.
Моя реализация работает нормально при следующих обстоятельствах, ie ячейки правильно очищены и используются повторно:
- Прокрутка вверх и вниз, если не выбрано
dateCells
- Прокрутка вверх и вниз, когда
dateCells
, которые не содержат activities
, выбраны
Всякий раз, когда dateCell
которые содержат activities
, ячейки больше не очищаются, ie точки начинают появляться в случайных местах. См. Gif:
Код следующий:
//At viewController: JTACMonthViewDelegate
func configureCell(view: JTACDayCell?, cellState: CellState) {
guard let cell = view as? DateCell else { return }
cell.dateLabel.text = cellState.text
handleCellTextColor(cell: cell, cellState: cellState)
handleCellSelected(cell: cell, cellState: cellState)
highlightTodaysDate(cell: cell, cellState: cellState)
handleCellEvents(cell: cell, cellState: cellState)
}
func highlightTodaysDate(cell: DateCell, cellState: CellState) {
dateFormatter.dateFormat = "YYYY MM dd"
if dateFormatter.string(from: cellState.date) == dateFormatter.string(from: Date()) {
cell.isToday = true
} else {
cell.isToday = false
}
}
func handleCellTextColor(cell: DateCell, cellState: CellState) {
if cellState.dateBelongsTo == .thisMonth {
cell.dateLabel.textColor = UIColor.black
} else {
cell.dateLabel.textColor = UIColor.gray
}
}
func handleCellSelected(cell: DateCell, cellState: CellState) {
if cellState.isSelected {
cell.selectedView.isHidden = false
dateFormatter.dateFormat = "dd-MMM-yyyy"
let dateString = dateFormatter.string(from: cellState.date)
//a separate tableView is in viewController, here getting dataSource for that TV
let filtered = calendarDataSource.filter { $0.key == dateString }
tableViewDataSource = filtered[dateString] ?? []
tableView.reloadData()
} else {
cell.selectedView.isHidden = true
}
}
func handleCellEvents(cell: DateCell, cellState: CellState) {
dateFormatter.dateFormat = "dd-MMM-yyyy"
let dateString = dateFormatter.string(from: cellState.date)
if calendarDataSource[dateString] == nil {
cell.activities = []
} else {
cell.activities = calendarDataSource[dateString]
}
}
//At DateCell
var isToday: Bool? {
didSet {
if isToday ?? false {
//setup red selectedView bg
} else {
//setup gray selectedView bg
}
}
}
var activities: [Activity]? {
didSet {
if let activities = activities {
if activities.count > 0 {
setupStackView(activities)
}
} else {
stackView.removeFromSuperview()
}
}
}
var stackView = UIStackView()
override init(frame: CGRect) {
super.init(frame: frame)
//Other setup work
}
func setupStackView(_ activities: [Activity]) {
var dotViews: [UIView] = activities.map { (activity) -> DotView in
let dotView = DotView()
if activity.type == "1" {
dotView.dotView.backgroundColor = .orange
} else if activity.type == "2" {
dotView.dotView.backgroundColor = .purple
} else {
dotView.dotView.backgroundColor = .lightGray
}
return dotView
}
if activities.count > 1 {
dotViews.insert(UIView(), at: 0)
dotViews.insert(UIView(), at: activities.count + 1)
}
stackView = UIStackView(arrangedSubviews: dotViews)
stackView.translatesAutoresizingMaskIntoConstraints = false
stackView.axis = .horizontal
stackView.distribution = .fillEqually
addSubview(stackView)
stackView.topAnchor.constraint(equalTo: dateLabel.bottomAnchor).isActive = true
stackView.bottomAnchor.constraint(equalTo: bottomAnchor).isActive = true
stackView.leadingAnchor.constraint(equalTo: leadingAnchor).isActive = true
stackView.trailingAnchor.constraint(equalTo: trailingAnchor).isActive = true
}
override func prepareForReuse() {
super.prepareForReuse()
//Other UI reset work here
stackView.removeFromSuperview()
}
Как очистить ячейку так, что точки не появляются в местах, где это не должно быть?