Hi
I'm struggling to create a table view controller that has anything more than just a table view in it.
I don't want to use a footer view, as I'd like a toolbar at the bottom of the page, and there are cases where there aren't enough rows in the table to put the footer at the bottom of the screen. The other issue with this is that the toolbar bounces ;)
I've tried to not use a UITableViewController and use a UIViewController with This works okay, but when the table returns when I click back on the navigation control the row remains highlighted.
So I have two questions: 1. How do I get the row to fade out like it does with the UITableViewController? and 2. Is it possible to add other UI elements that aren't UITableViews to a UITableViewController?
Thanks Carl