UITableViewHeaderFooterView *headerView = [_vTable dequeueReusableHeaderFooterViewWithIdentifier:headerSectionID];
if (headerView == nil) {
headerView = [[UITableViewHeaderFooterView alloc] initWithReuseIdentifier:headerSectionID];
UILabel *label1 = [[UILabel alloc] initWithFrame:CGRectMake(15, 5, 130, 20)];
// label.font = FONT(13);
UILabel *label2 = [[UILabel alloc] initWithFrame:CGRectMake(150, 5, 100, 20)];
UILabel *label3 = [[UILabel alloc] initWithFrame:CGRectMake(250, 5, 100, 20)];
label1.text = @"抓拍时间";
label2.text = @"数量";
label3.text = @"图片";
// label.font = FONT(13);
[headerView addSubview:label1];
[headerView addSubview:label2];
[headerView addSubview:label3];
_vTable.tableHeaderView=headerView;
}