Tagged Questions
The searchdisplaycontroller tag has no wiki summary.
14
votes
7answers
10k views
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 ...
3
votes
3answers
3k views
searchDisplayController: change the label “No Results”
how do I change the label "No Results", when using a searchDisplayController?
Regards
1
vote
1answer
394 views
SearchDisplayController & Coredata Search locks the application while loading, what can i do?
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 ...
1
vote
4answers
5k views
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 ...
1
vote
2answers
4k views
Cocoa Touch - UISearchBar Keyboard - Hide 'Search' Button
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 ...
0
votes
2answers
20 views
searchDisplayController description is null?
The main controller is a tabBarController; one of the tabs is navigationController, then in that navigationController is a UItableView with searchDisplayController.
SearchBar is in UItableView.
...
0
votes
0answers
29 views
What's the advantage of using searchdisplaycontroller as opposed to just regular uisearchbar with separate tableview controller
What's the point? Why do apple build searchDisplayController?
0
votes
1answer
213 views
Dismiss Popover from SearchDisplayController
I programmed a SearchBar but no ot in the interface builder b< dragging the search to the tableView. The SearchResult was shown in an other TabelView. The search works great. But every time I ...
0
votes
1answer
110 views
How to create an ivar for searchDisplayController
following this question, how would I create an "ivar" as mentioned? Ran into this same issue and I'm trying to work around it so apple will approve my latest update
0
votes
1answer
102 views
searchResultsTableView takes entire screen on ipad
I am working on a app for the iPad which has a tableView on the left and a view on the right. We are not using the UISplitViewController.
I have been able to setup filtered results using the Search ...
0
votes
1answer
1k views
Three20 Search Scope
I'm using Three20 and I've got the standard search mechanism working.
TTTableViewController* searchController = [[[TTTableViewController alloc] init] autorelease];
searchController.dataSource = ...
0
votes
1answer
476 views
iphone - Search bar disappears from my root view controller
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] ...
0
votes
2answers
2k views
searchdisplaycontroller: change the text of the searchbar
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 ...