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(sender: UIButton) {
} Now, i want to pass one another parameter to sender : UIButton , so how can i pass?