I would like to layout a TTSearchBar
above above a TTThumbsViewController
. My current (failing) attempt involves my own SearchViewController
that inherits from TTViewController
and contains a reference to a TTThumbsViewController
and TTSearchBar
. In the loadView
method, I instantiate both TTThumbsViewController
and TTSearchBar
and add them (actually, ..the view
property of the TTTVC) as subviews. When the SearchViewController
is pushed, neither the TTThumbsViewController
nor the TTSearchBar
are displayed.
I've just follwed the instructions at question #2601484 and gotten to same place as question #2614079.
Am I going about this wrong? Is there a better way to add search to the TTThumbsViewController
?