When my modal view appears it looks like this (ui search bar and empty table). Very typical.
I want my view when it appears to look like this
How can I do it?
You could call [self.mySearchBar becomeFirstResponder]
(Objective C) or mySearchBar.becomeFirstResponder()
(Swift) in your viewWillAppear
lifecycle method.