views:

597

answers:

1

I've seen apps that take the UITableView index header (i.e. the thing in the iPod application that separates songs starting in A, B, etc.) and put their own custom image as the background. Such apps are the myStarbucks app and the What's on TV? app. I've looked a little bit through the documentation and there doesn't seem to be a specific variable to edit the background of this index-header view. How can it be changed?

A: 

You might want to try implementing tableView:viewForHeaderInSection: method in your UITableView delegate.

Linas