I have two independent view controllers with same navigation bar buttons. Each view controller has a search button on navigation bar.
I want to create a super class for both the view controllers and add search bar functionality in the super class so that both the view controllers can share the same functionality. Also I don't want to fix the search bar position. I want to show search bar on view controller's search button tap and hide search bar on resign first responder.
I have been trying solving this but couldn't reach to the solution. Also When I tried implementing that I got faded view except search bar frame not faded and search bar and keyboard were not visible.
How to solve this problem?