Question is similar to this one: Setting searchBar.text in view did load
I have my keyword from V1 passing to V2 without issues; I'm trying to set it as search bar text & search from previous segue.
String is called searchText.
I've tried
self.searchBar.text = self.searchText;
in viewWillAppear & viewDidLoad of V2 but nothing is showing up in my search bar.
How can I get my searchText into the search bar and filtering my table after segue from V1 to V2?