What's the best way to combine multiple styles into one UITableView?
For instance, in the iTunes Music Store App (Music tab), there's ads on top, then large rounded table cells, and then Grouped-styled table cells, etc. I'm looking to have a custom view cell on top, then several rows of Grouped-style table cells, and then several rows of Plain-styled table cells.
I'm currently initializing my UITableView with UITableViewStyleGrouped, which works well for my need of Grouped-style cells, but I can't find a good way of overwriting the individual cells' styles so that I can create the other styled cells.
Any suggestions?