我有自定义表格视图单元格,有评级星标。我正在使用https://github.com/hsousa/HCSStarRatingView对视图进行评分。 有我的表视图和单元格视图的代码。
class RatingTableViewCell: UITableViewCell {
var value : CGFloat = 0.0
@IBOutlet weak var starRatingView: HCSStarRatingView!
@IBOutlet weak var titleLabel: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
initStarRatingView()
starRatingView.addTarget(self, action: #selector(DidChangeValue(_:)), for: .valueChanged)
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
private func initStarRatingView() {
var scalingTransform : CGAffineTransform!
scalingTransform = CGAffineTransform(scaleX: -1, y: 1);
starRatingView.transform = scalingTransform
starRatingView.emptyStarImage = #imageLiteral(resourceName: "strokStar")
starRatingView.halfStarImage = #imageLiteral(resourceName: "halfStar")
starRatingView.filledStarImage = #imageLiteral(resourceName: "fillStar")
starRatingView.allowsHalfStars = true
}
@IBAction func DidChangeValue(_ sender: HCSStarRatingView) {
self.value = sender.value
}
class RatingViewController: CustomViewController,UITableViewDelegate,UITableViewDataSource {
var values : [CGFloat] = [0.5,0.0,0.0,0.0,0.0,0.0,0.0]
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "RatingTableViewCell", for: indexPath) as! RatingTableViewCell
values[indexPath.row] = cell.value
cell.starRatingView.value = values[indexPath.row]
return cell
}
//MARK: _Table data source
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
values.count
}
}
滚动表视图时出现问题。出列可重用单元格数据错误。如何更新每个单元格的数据?
答案 0 :(得分:1)
问题是您将值存储在单元格中。看看这两行:
let cell = tableView.dequeueReusableCell(withIdentifier: "RatingTableViewCell", for: indexPath) as! RatingTableViewCell
values[indexPath.row] = cell.value
您将单元格出列并将其值分配给值[indexPath.row]。滚动时您注意到的问题是由于重用的单元格以前用于不同的indexPath这一事实,这意味着它们的值(您指定给值[indexPath.row])是针对其先前的indexPath。 / p>
要解决这个问题,我建议去掉RatingTableViewCell中的value变量。相反,定义一个协议RatingTableViewCellDelegate,用于通知RatingViewController有关新值的信息。