将多个参数传递给#selector

时间:2016-06-23 14:01:50

标签: swift methods

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCellWithIdentifier("MyCell", forIndexPath:indexPath) as! MyTableViewCell
    cell.myButton.addTarget(self, action: "myClick:", forControlEvents: .TouchUpInside)
}

func myClick(发件人:UIButton){

} 现在,我想将另一个参数传递给发送者:UIButton, 那我该怎么办呢?

1 个答案:

答案 0 :(得分:0)

您可以发送的唯一参数是发件人,在您的情况下是UIButton。