1.注意UItableView的重用机制(要干掉)
2.设置tag
UITableViewCell * cell = (UITableViewCell *)[[sendersuperview] superview];
NSIndexPath * path = [_messageTableindexPathForCell:cell];
UILabel *lable=(UILabel *)[cell.contentViewviewWithTag:1000 + path.row];
NSLog(@"index row-------%ld", (long)path.row);
NSLog(@"-------------%@", lable.text);
注意:在设定表头和表未的时候,表头直接自定义View即可,表未是指 “实际”用到的最后Cell开始算的