By default on a UITableView, when you touch a cell, it goes into selected mode, and is highlighted grey.
In our app, you can touch a header and it goes on to another page.
We want users to get the same kind of visual feedback when they touch a section, as when they they touch a cell. That is, it responds by going into a "selected" mode and making the background go a bit darker to indicate selection.
This does not occur when you touch a UITableView section. The section does not go into selection mode. It does not turn grey.
We've tried putting in a transparent button that spans a custom UIView with a background image and enabling "Reverses on Highlight", but the result is not very responsive and sucks.
What's the best strategy for implementing such functionality?