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, 那我该怎么办呢?
答案 0 :(得分:0)
您可以发送的唯一参数是发件人,在您的情况下是UIButton。