当按钮收到事件时,UITapGestureRecognizer 到 cellForRowAt

Posted

技术标签:

【中文标题】当按钮收到事件时,UITapGestureRecognizer 到 cellForRowAt【英文标题】:UITapGestureRecognizer to cellForRowAt when button receive an event 【发布时间】:2018-01-11 04:09:12 【问题描述】:

我是 Swift 的新手。我被困在这里。我想要当我点击按钮时,单元格发生变化并显示警告,但我认为我在某个地方错了。请给我解释一下。当我提出问题时,我会考虑很多。

下面是代码:

@objc func handleTap(_ sender: UITapGestureRecognizer) 
    ManagerProfileTableView.reloadData()


func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell 
    let cell = tableView.dequeueReusableCell(withIdentifier: "managerProfileCell") as! ManagerInformationTableCell
    let cellButton = tableView.dequeueReusableCell(withIdentifier: "buttonUpdateProfile") as! UpdateProfileTableCell

    if indexPath.row == titlesInformationArr.count - 1 
        cellButton.updateButton.setTitle("Update", for: UIControlState.normal)
        cellButton.updateButton.layer.cornerRadius = 5
        let tap = UITapGestureRecognizer(target: self, action: #selector(self.handleTap(_: )))
        cellButton.updateButton.isUserInteractionEnabled = true
        cellButton.updateButton.addGestureRecognizer(tap)
        if cell.informationTextField != nil 
            cell.warningImage.isHidden = true
         else 
            cell.warningImage.isHidden = false
        
        return cellButton

     else 
        cell.informationTextField.text = titlesInformationArr[indexPath.row].value
        cell.titlesLabel.text = titlesInformationArr[indexPath.row].title
        return cell
    

【问题讨论】:

另一种简单的方法是取一个 bool 值,如 loadmanageProfileCell 并在点击并重新加载 tableview 时分配 true false 值,如果 loadmanageProfileCell 为 true,则在 cellForRowAt indexPath 添加一个条件,因此加载此单元格或加载另一个单元格. :) 仍然有任何问题,请告诉我。 【参考方案1】:

您的cellButton 可能不应该是可重复使用的单元格——这就是cell 的含义——而是添加到出列的可重复使用的单元格中的 UIButton。如果你像这样添加它,你必须考虑细胞的生命周期。因为它是可重复使用的,所以即使以前使用过并且已经有一个按钮,您也会冒着向单元格添加按钮的风险......除非您使用prepareForReuse()

执行相反的操作并移除按钮

(当您向上和向下滚动时,当一个单元格离开屏幕时,它会回到一个可供重复使用的单元格池中,并且可以返回给您,处于它消失时的状态,就像您调用 @ 987654324@.)

在这种情况下,您最好在界面生成器中设计原型单元格并将按钮添加到其中,然后将 UITableViewCell 子类化并在该子类中为按钮事件touchUpInside 创建一个 IBAction。当接收到该操作时,单元格可以执行一些操作,其中可能包括调用委托方法,其中持有表视图的视图控制器是委托,以执行与表视图相关的操作,例如您的示例中的reloadData()

如果您只想在任何地方检测单元格中的点击,单元格已经可以做到这一点 - 只需确保 UITableViewDelegate 已连接 - 通常连接到您实现 UITableViewDataSource 的同一位置 - 并实现方法func tableView(UITableView, didSelectRowAt: IndexPath) .您应该能够在此站点上找到大量使用此方法的示例。

如果您想知道您看到的警告可能意味着什么,您可以编辑答案并包含它吗?

【讨论】:

我做到了,非常感谢。我不能投票,因为我的声望低于 15,对此我深表歉意。【参考方案2】:

你好@Lucifer你不需要添加 UITapGestureRecognizer 因为 UITableView 有它自己的代表你只需要附加 tableview 通过右键单击 tableview 并将其放在 ViewController 上

见下图

然后在 ViewController 类中调用这个委托方法,它将在单元格选择时被调用

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) // 在这里做你想做的事

【讨论】:

我做到了,非常感谢。我不能投票,因为我的声誉低于 15 :(。对此我感到非常抱歉【参考方案3】:

如果您想从按钮控制单元格,则不需要在单元格上使用 tapGesture。您可以简单地向按钮添加一个标签,然后简单地使用标签获取该单元格。这是您修改后的代码

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell 
    let cell = tableView.dequeueReusableCell(withIdentifier: "managerProfileCell") as! ManagerInformationTableCell
    let cellButton = tableView.dequeueReusableCell(withIdentifier: "buttonUpdateProfile") as! UpdateProfileTableCell

    if indexPath.row == titlesInformationArr.count - 1 
        cellButton.updateButton.setTitle("Update", for: UIControlState.normal)
        cellButton.updateButton.layer.cornerRadius = 5
        cellButton.tag = indexPath.row
        cellButton.addTarget(self , action : #selector(cellButtonTapped(_:)) , for : .touchUpInside)

        cellButton.updateButton.isUserInteractionEnabled = true

        if cell.informationTextField != nil 
            cell.warningImage.isHidden = true
         else 
            cell.warningImage.isHidden = false
        
        return cellButton

     else 
        cell.informationTextField.text = titlesInformationArr[indexPath.row].value
        cell.titlesLabel.text = titlesInformationArr[indexPath.row].title
        return cell
    

@objC func cellButtonTapped(_ sender : UIButton)
  let index = sender.tag
  let cellToChange = tableView.cellForRowAt(indexPath : [0,index]) as! ManagerInformationTableViewCell
  cellToChange.backgroundColor = .green


【讨论】:

我做到了,谢谢你的帮助。我不能投票,因为我的声望低于 15 :(。很抱歉不能投票给你

以上是关于当按钮收到事件时,UITapGestureRecognizer 到 cellForRowAt的主要内容,如果未能解决你的问题,请参考以下文章

如何避免页面刷新按钮事件

当按钮被禁用然后点击事件调用

主页启动器强制停止后未收到Android AppWidget的按钮单击事件

当 UIAlertController 在按钮按下时被关闭时收到通知

Flutter:当 GestureDetector 中有一个 ListView 时,它显然没有收到 Drag 事件

Javascript - 当服务器发送大响应时,WebSocket 客户端未收到 onmessage 事件