Questions tagged [searchdisplaycontroller]
41 questions
0
votes
2 answers
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 application with a search bar and a search display…

gyozo kudor
- 6,284
- 10
- 53
- 80
0
votes
1 answer
Problems with Search Display Controller
I am learning to use Search Bars a Search Display Controllers in iOS. I made a simple test project with two views, one view contains a UITableView and a UISearchBar, when you select an row from the table view, the new view shows a label with the…

rene
- 7
- 1
0
votes
1 answer
searchDisplayController message sent to deallocated instance (only in iOS7)
This is my code in AppDelegate
iMapView = [[iMapViewController alloc] init];
if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
{
CGSize result = [[UIScreen mainScreen] bounds].size;
if(result.height == 568)
…

Nam Vu
- 5,669
- 7
- 58
- 90
0
votes
1 answer
Permanently Hide UISearchDisplayController
I'm trying to hide the searchDisplay controller attached to a UITableView in an iOS 7 Table View Controller. I don't want to temporarily scroll it off the top; I want it to be completely disabled.
In my table view controller code (which, FWIW is…

Nick
- 3,172
- 3
- 37
- 49
0
votes
0 answers
How to add a search bar and search display to an rss feed in UItableview
I created an RSS reader that parses from a .xml file. I am trying to create a search bar and search display controller, but am not sure how to search the objectForKey "title" or objectForKey "summary" within the UITableView.
Any help would be…

Bobi
- 437
- 1
- 8
- 20
0
votes
1 answer
Wrong Cell's value in TableView after searching
hi everyone
i have tow arrays in my project like this
- (void)viewDidLoad
{
[super viewDidLoad];
deviceName = [[NSArray alloc] initWithObjects: @"iPhone", @"Galaxy", @"iPad", @"iMac", @"HTC One", nil];
companyName =…

Almudhafar
- 887
- 1
- 12
- 26
0
votes
1 answer
How to create TWO Search Display IPAD
I want to place two Search display in one view controller(iPad). I drag two Search Display Controller in my view controller, however, only one search display works.
In the Connections Inspector, I find that one search display's outlet…

beaumelon
- 11
- 3
0
votes
1 answer
why does the underlying UIViewTable display whenever I'm using Search Display Controller
I have a UIViewController class that contains a UITableView and a SearchDisplayController. The problem I'm facing is that whenever I click on the search bar and type a query.. it displays both the search results AND displays the underlying…

abbood
- 23,101
- 16
- 132
- 246
0
votes
0 answers
SearchDisplayController hide searchResultsTableView and show underlaying table view disables scrolling
I have a tableview with a searchDisplayController and three different search scopes. For the two first scopes I want to display the search results in the standard searchResultsTableView. For the last one I want to hide the searchResultsTableView and…

dybbis
- 3
- 1
0
votes
1 answer
Crash with rotating SearchDisplayController: [Object _existingView]: unrecognized selector sent to instance
I've seen various question on this topic but never found a good answer for it.
I have an App that's using UITableViewController and that instantiates a SearchDisplayController for it.
I receive random crash from my crash reporter that every time…

Chevenement David
- 356
- 2
- 8
0
votes
1 answer
uisearchbar uisearchdisplaycontroller tableview subtitle error
I have a little problem with my searchbar for a tableview
I have made a tableview with an array tableViewArray.
The tableViewArray consists of many rows of another array consisting of [text, distance].
Everything is working fine.
Now i added a…

B-Man
- 2,209
- 3
- 22
- 35