i have leftnavbutton and rightnav button now how to add search bar in between them
right now i am using this self.tableView.tableHeaderView = searchBar;
but this bar goes up when you serach item downside so i want to make it at top always visible;
i have leftnavbutton and rightnav button now how to add search bar in between them
right now i am using this self.tableView.tableHeaderView = searchBar;
but this bar goes up when you serach item downside so i want to make it at top always visible;
You can also do it by add searchbar below the navigationbar and below that add tableview, so when you scroll the table searchbar will not move.
You can also add searchbar in navigationvar using the following code
self.navigationItem.titleView = searchbar;