如果在其他 class 中实施,自定义点击识别器方法将不起作用

Custom tap recognizer method won’t work if implemented in other class

是否可以创建一个任何其他 class 都可以访问的全局方法来添加点击识别器?

(我是swift的初学者)

Context/What 我要实现:

由于我将在各种视图中使用大量点击识别器(用于标签和图像视图),因此我想创建一个默认方法来帮助我在每次需要点击识别器时节省几行代码。

->我想要的例子

class Toolbox {
 static func customTapRecognizerForLabel () {}
 static func customTapRecognizerForImage () {}
}

所以我可以在不同的视图控制器中使用它们:

class ViewControllerOne{
 Toolbox.customTapRecognizerForLabel()
}
class ViewControllerTwo{
 Toolbox.customTapRecognizerForLabel()
}

到目前为止我做了什么?:

什么没用: 我在 Toolbox.swift 中创建了工具箱 class,试图在其他视图控制器中调用它,但它不起作用。 (还尝试定义 class 的共享实例而不是使用静态方法,但也没有成功)

有效的方法: 在同一个视图控制器中实现方法。

我的工具箱代码:

import Foundation
import UIKit

class Toolbox: UIViewController {

static func tapRecognizerforLabel (named label: UILabel, action: Selector) {
 let tapGestureForLabel = UITapGestureRecognizer(target: self, action: action)
 label.addGestureRecognizer(tapGestureForLabel)
 label.isUserInteractionEnabled = true
 }
}

我怎么称呼它:

class ViewOne: UITableViewCell {

@IBOutlet weak var nameLabel: UILabel!

override func awakeFromNib() {
 super.awakeFromNib()
 Toolbox.tapRecognizerforLabel(named: nameLabel, action: #selector(self.methodAlpha))
}

func methodAlpha() {
 print("It's friday my dudes")
}
}

触摸标签时出现的错误:

2018-07-13 11:08:22.131602-0500 MyApp[20435:1274296] 
+[MyApp.Toolbox methodAlpha]: unrecognized selector 
sent to class 0x1033c0038

2018-07-13 11:08:22.218289-0500 MyApp[20435:1274296] 
*** Terminating app due to uncaught exception 
'NSInvalidArgumentException', reason: 
'+[MyApp.Toolbox methodAlpha]: unrecognized selector 
sent to class 0x1033c0038'

为什么我在 ViewOne class 中实现 tapRecognizerforLabel() 方法可以工作,但在其他 class 中实现它却不行?

欢迎以其他方式实现我想要的建议

谢谢:)

你需要这样发送目标

func tapRecognizerforLabel (named label: UILabel, action: Selector,target:Any) { 
  let tapGestureForLabel = UITapGestureRecognizer(target:target, action: action)
  label.addGestureRecognizer(tapGestureForLabel)
  label.isUserInteractionEnabled = true
} 

目标应该包含选择器内部方法的实现,因为你设置了 selfToolbox 而它不包含它因此发生崩溃,调用

Toolbox.tapRecognizerforLabel(named: nameLabel, action: #selector(self.methodAlpha),target:self)