swift addTarget多个参数

时间:2016-03-27 04:10:37

标签: xcode swift function parameters arguments

我是Swift 2.2中的新手

我想添加带有多个参数的目标按钮

let users_id = 123
let contests_id = 456
cell.acceptButton.addTarget(self, action: #selector(self.acceptAction(_:users_id:contests_id)), forControlEvents: .TouchUpInside)

func acceptAction(sender: AnyObject,contests_id:Int, users_id: Int){
    print(contests_id)
    print(users_id)
}

但它不起作用。

可以使用多个参数添加目标吗?

如果没有,我该如何设计该功能?

0 个答案:

没有答案