[cell.btnFreeBankCard addTarget:self action:@selector(unbundleBankCard:event:) forControlEvents:UIControlEventTouchUpInside];
/**
標(biāo)記標(biāo)簽
@param sender 發(fā)送者
*/
- (void)unbundleBankCard:(UIButton *)sender event:(UIEvent *)event
{
NSSet *touches = [event allTouches];
UITouch *touch = [touches anyObject];
CGPoint currentTouchPosition = [touch locationInView:self.tableBankCardList];
NSIndexPath *indexPath =[self.tableBankCardList indexPathForRowAtPoint:currentTouchPosition];
........
處理 按鈕點(diǎn)擊事件
}