-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
}
Hi
I am very new in objective c..................
Please use following code & change the color of your UITableView header
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
UIView *tempHeaderView=[[UIView alloc]initWithFrame:CGRectMake(0,0,320,44)];
tempHeaderView.backgroundColor=[UIColor clearColor];
UILabel *tempHeaderLabel=[[UILabel alloc]initWithFrame:CGRectMake(0,0,320,44)];
tempHeaderLabel.backgroundColor=[UIColor clearColor];
tempHeaderLabel.text=@"HEADER";
[tempHeaderView addSubView: tempHeaderLabel];
return tempHeaderView;
}