[cell.downLoadBtn addTarget:self action:@selector(downLoadBtn:event:) forControlEvents:UIControlEventTouchUpInside];
- (void)downLoadBtn:(UIButton*)sender event:(id)event{
NSSet *touches =[event allTouches];
UITouch *touch =[touches anyObject];
CGPoint currentTouchPosition = [touch locationInView:_tableView];
NSIndexPath *path= [_tableView indexPathForRowAtPoint:currentTouchPosition];
if (path!= nil)
{
PackageListTableViewCell * cell = (PackageListTableViewCell *)[self.tableView cellForRowAtIndexPath:path];
}