我在TableView中有一个UILabel,该UILabel连接到一个GestureRecognizer。我要做的是在标签点击时将UILabel的颜色更改为红色。现在,当uilabel被点击时,标签变为红色,但是错误的TableCell正在改变颜色。如果我点击单元格3,我希望单元格3中的UILabel改变颜色,而不是单元格4或5。

class HomeProfilePlacesCell: NSObject {

    var CellCopy: HomeTVC?

    @objc func PostTap(_ sender: UIGestureRecognizer) {

         // This works but it often changes wrong cell
         CellCopy?.post.textColor = UIColor.red
    }

    func HomeProfilePlaceTVC(_ tableView: UITableView, cellForRowAt indexPath: IndexPath, streamsModel : streamModel,HOMEPROFILE: HomeProfile, controller: UIViewController) -> UITableViewCell {

        let cell = tableView.dequeueReusableCell(withIdentifier: "HomeTVC", for: indexPath) as! HomeTVC
        CellCopy = cell

        let tapGesture = UITapGestureRecognizer(target: self, action: #selector(PostTap(_:)))
        tapGesture.delegate = self as? UIGestureRecognizerDelegate

        cell.post.addGestureRecognizer(tapGesture)
        cell.post.text = streamsModel.Posts[indexPath.row]
        cell.post.tag = indexPath.row

        return cell
    }
}

代码再次正常工作,我只需要找到一种方法,将单击的单元格的索引指向PostTap方法,这样它就可以更改单击的正确单元格的颜色。任何帮助或建议都很好。我不想使用表重新加载,因为我只在单击的单元格中更改了1个UILabel。

最佳答案

不需要获取标签粘贴在其中的单元格的索引。UIGestureRecognizer附加了一个手势,因此要更改标签颜色,只需使用UIView方法:

sender.view?.backgroundColor = .red

10-01 03:11
查看更多