I have searchBar and searchDisplayController put in tabbar that is main tabbar.
When I open new viewcontroller by pushing there has no problem.
mainTabbar -> navigationController+searchController -(push after rowdidselect)-> newVC -(push)-> newVC -(push)-> ...
But when I do some present modal.
mainTabbar -> navigationController+searchController -(push after rowdidselect)-> newVC -(modal)-> newVC
Then back to searchResult
mainTabbar -> navigationController+searchController
I can't push newViewController again and got these error:
[__NSCFString setView:]: unrecognized selector sent to instance 0x8292720
what happening to me? all results just tell me about gesturecognizer.
::after I enable zombies I got this message
-[UITapGestureRecognizer retain]:message sent to deallocated instance 0xfcd83b0
I guess the TapGestureRecognizer with in cell of searchDisplayController table is deallocated. Anyone Know How to Retain them???