-(IBAction)button:(id)sender{
UITableViewCell* buttonCell = (UITableViewCell*)[sender superview];
NSUInteger path = [[tableView indexPathForCell:buttonCell]row];
//如果有分组的话
NSUInteger section = [path section];//找到按钮所在的分组
NSUInteger row = [path row];//找到行
}