searchdisplaycontroller

searchDisplayController: change the label "No Results"

Hello, how do I change the label "No Results", when using a searchDisplayController? Regards ...

Cocoa Touch - UISearchBar Keyboard - Hide 'Search' Button

Hi all, On my iPhone app I'm using a UISearchBar (without a Search Display Controller). I have my own 'Search' button as a UIButton and therefore on the keyboard that pops up when editing begins on a UISearchBar I would like to constantly hide the 'Search' button on it as it is unusable. How could I go about doing this without the Searc...

How to make the search bar staying always on top using UISearchDisplayController in iPhone SDK 3.0

The iPhone SDK 3.0 has this handy new class "UISearchDisplayController" which makes it easy to create a search bar, handling all the user input and displaying the search results. I am using it for my new app, but there is one thing i would like to change: As a default, the search bar should be put at the top of the UITableView that dis...

UISearchDisplayController with no results tableView?

Usually, a UISearchDisplayController, when activated, dims the tableView and focuses the searchBar. As soon as you enter text into the searchBar, it creates a searchResultsTableView that displays between the searchBar and the keyboard. The searchDisplayController's delegate gets called when this second UITableView is loaded/shown/hidden/...

searchdisplaycontroller: change the text of the searchbar

Hello, SHORT DESCRIPTION OF PROBLEM: I want to set the text of a searchbar without automatically triggering the search display controller that is bound to it. LONG DESCRIPTION OF PROBLEM: I have an iphone application with a search bar and a search display controller. The searchdisplaycontroller is used for autocomplete. For autocomplet...

SearchDisplayController & Coredata Search locks the application while loading, what can i do?

Hello friends. I am building an application with coredata. Its nearly finished but i have a problem. I want to put a search section on my application. I did it now and it is working, but there is something weird and i could not solve. When clicked on the search button, i am preparing my Predicates and search my database, and show the ...

iphone - Search bar disappears from my root view controller

Hi, I have a search bar in my main screen - root table view controller. If I browse other screens and come back, sometimes, the search bar disappears. Here's my code. searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 44.0)]; searchBar.delegate = self; searchBar.tintColor = [UI...

Three20 Search Scope

Hey there, I'm using Three20 and I've got the standard search mechanism working. TTTableViewController* searchController = [[[TTTableViewController alloc] init] autorelease]; searchController.dataSource = [[[MyDataSource alloc] init] autorelease]; self.searchViewController = searchController; self.tableView.tableHeaderView = _searchC...