views:

10

answers:

1

HI

I have a UITableViewController where I also use the section header.

Now is there any chance to use an image as background for the section header ?

Thanks

+1  A: 

You may wanna look at this :

- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

it returns the view that shows the header, here you can draw your background image as you wish.

eemceebee