Swift:在披露指标上重新激活轻按手势

Posted

技术标签:

【中文标题】Swift:在披露指标上重新激活轻按手势【英文标题】:Swift: Re-activating Tap Gesture on Disclosure Indicators 【发布时间】:2015-08-01 14:05:00 【问题描述】:

我有一个 Swift 项目,它有一个带有多个静态单元格部分的表视图控制器。一些单元格有 UITextFields 和其他有附件:披露指标。我已经实现了以下 Swift 代码来在点击背景时关闭键盘:

override func viewDidLoad() 
    super.viewDidLoad()

    let tapGesture = UITapGestureRecognizer(target: self, action: Selector("hideKeyboard"))
    tapGesture.cancelsTouchesInView = true
    tableView.addGestureRecognizer(tapGesture)


func hideKeyboard() 
    tableView.endEditing(true)

这非常适合在点击背景时释放键盘,但它也删除了披露指示器的点击手势(滑动仍然有效)。有谁知道在实现这个 hideKeyboard() 函数后如何重新激活 Disclosure Indicators 单元格的点击手势?

【问题讨论】:

【参考方案1】:

保留对手势识别器的引用,并在隐藏键盘时将其从视图中移除。

class YourController: UITableViewController 
    let tapGesture: UITapGestureRecognizer = 
      let tg = UITapGestureRecognizer(target: self, action: "hideKeyboard")
      tg.cancelsTouchesInView = true
      return tg
    ()

    override func viewDidLoad() 
        super.viewDidLoad()

        tableView.addGestureRecognizer(tapGesture)
    

    func hideKeyboard() 
        tableView.endEditing(true)
        tableView.removeGestureRecognizer(tapGesture)
    

【讨论】:

在实施解决方案时,我确实在“let tg = UITapGestureRecognizer(target: self, action: “hideKeyboard”) 行收到了构建错误。错误为:找不到接受…bleViewController -> () -> SpecificationsTableViewController, action: String) 的“UITapGestureRecognizer”类型的初始化程序。任何额外的帮助将不胜感激!

以上是关于Swift:在披露指标上重新激活轻按手势的主要内容,如果未能解决你的问题,请参考以下文章

我在披露指标中看到了双 V 形。为啥以及如何解决这个问题? [关闭]

带有 .listRowInsets(EdgeInsets()) 的披露指标

轻按手势仅在轻按 3 次后响应

压力测试50家互金协会会员单位,竟无信披完全合格者?!

MySQL-计算当月重新激活客户_20161013

Swift - 在图像而不是视图上使用手势识别器