-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
self.sectionHeaderView = [[[UINibnibWithNibName:@"SectionHeaderView"bundle:nil]instantiateWithOwner:selfoptions:nil]objectAtIndex:0];
if (worksInfoArray.count > 0) {
WorksInfo *workInfo = [worksInfoArray objectAtIndex:0];
self.sectionHeaderView.countLabel.text =[NSString stringWithFormat:@"作品列表(%d)",workInfo.opusCount];
}
returnself.sectionHeaderView;
}