Friday, February 25, 2011

Set Image For Header of Section

-(UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(110.0, 25.0, 320, 25.0)];
imgView.image = [UIImage imageNamed:@"Image.png"];
return imgView;


}

No comments:

Post a Comment