我以编程方式创建了 UIButton 名称是 plusButton 和 UILabel 名称是 itemLabel 并且我为此按钮添加了目标;
plusButton.addTarget(self, action: #selector(plusButtonClicked(itemLabel)), for: UIControlEvents.touchUpInside)
@objc func plusButtonClicked(_ sender : UILabel){
//MY CODE
}
我收到“'#selector' 的参数不引用 '@objc' 方法、属性或初始化程序”错误。当我删除函数中的参数时,没有任何错误。但是,当它是函数中的参数时,我会出错。