- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return how many section you need
}
//Set your section header height
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
    return 40.0f;
}
//Set your section view
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
    UIView *vw = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.tblImageList.frame.size.width, 40)];
   [vw setBackgroundColor:[UIColor clearColor]];
   UILabel *lbl = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.tblImageList.frame.size.width, 40)];
   [lbl setText:@"your text"];
   [lbl setBackgroundColor:[UIColor clearColor]];
   [lbl setTextColor:[UIColor colorWithRed:45.0f/255.0f green:206.0/255.0f blue:189.0f/255.0f alpha:1.0f]];
   [vw addSubview:lbl];
   return vw;
}