iphone - Other interface elements in a UITableViewController, cells not deselecting -
I am struggling to create a table view controller with nothing in it from just a table view.
I do not want to use a footer view because I want a toolbar at the bottom of the page, and there are cases where there are not enough rows in the table so that the footer can be placed below Screen. The other issue with this is that the toolbar bounces;)
I have not tried using a UITableViewController and using a UIViewController, but it works fine, but when I go to navigation control Click Back Line Highlight remains.
So I have two questions: 1. How can I fade the line to do this with the UITable VIPU controller? And 2. Is it possible to add other UI elements that are not UITableViews for UITableViewController?
Thanks Carl
About the first question,
I had the same problem you can see my question
As Daniel said:
The UTTU ViUI controller automatically handles it for you when you get a super-adid Call in AdyPar: etc. So the easiest way to achieve this is if you can not for sub-class UITableViewController (for example, because the table is only part of a more complex view), you must do it yourself in ViewDidAppear: Method. (You should also flash scrollers).
About the second question:
I do not think you can do that in the table view, a header view, a footer view, the view of table cells and Section views may include. You can add any other UI control to these 'sub' scenes, but not directly with the UITable VIPU controller.
Comments
Post a Comment