- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
UIView *mView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 150)];
// mView.backgroundColor = RGBCOLOR(245, 244, 244);
mView.backgroundColor = [UIColor greenColor];
return mView;
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 10;
}