Tagged Questions
The uisearchdisplaycontroller tag has no wiki summary.
16
votes
3answers
7k views
How to filter NSFetchedResultsController (CoreData) with UISearchDisplayController/UISearchBar
I'm trying to implement search code in my CoreData-based iPhone app. I'm not sure how to proceed. The app already has an NSFetchedResultsController with a predicate to retrieve the data for the ...
8
votes
5answers
3k views
Prevent a UISearchDisplayController from hiding the navigation bar
Whenever a user begins editing a UISearchDisplayController's search bar, the search controller becomes active and hides the view's navigation bar while presenting the search table view. Is it possible ...
7
votes
1answer
1k views
Force scope bar below UISearchBar
I have a UISearchBar and UISearchDisplayController, everything works great but my scope selector displays beside the text field instead of below it. I know that this is the expected action when the ...
7
votes
4answers
7k views
How to use NSFetchedResultsController and UISearchDisplayController
I've been creating an iPhone App using Core Data.
First of all, does it make sense to use an NSFetchedResultsController and a UISearchDisplayController together to fetch the result? Would you ...
6
votes
2answers
226 views
searchDisplayController does not display results if the iphone language is non English
I have a searchDisplayController which works perfectly when searching for English and Arabic words using a method as follows:
- (void)filterContentForSearchText:(NSString*)searchText ...
5
votes
2answers
859 views
Where do you declare constant in objective c?
I declared that in a header file that are imported to various other headers and I got linker error
const double EARTH_RADIUS=6353;
Basically I want the constant to be available for all classes on ...
5
votes
4answers
1k views
Why UISearchBar and its scope buttons are shown in one line?
I have seen Apple's example "TableSearch" that when touched its scope buttons come below the search bar.
http://developer.apple.com/iphone/library/samplecode/TableSearch/Introduction/Intro.html
But ...
5
votes
2answers
684 views
UISearchDisplayController - how to display search result with only by scope button selected but empty search string
The UISearchDisplayController is very handy and implementing search is pretty straightforward.
However, I bump into problem when, in my app, I want to display search result with empty search string ...
5
votes
4answers
861 views
UISearchDisplayController changing row height
I've set my UITableView row height to in Interface Builder to 54.0. I have a UISearchDisplayController on that view. When the user taps the search bar in it, the table resizes properly. However, when ...
4
votes
4answers
753 views
UISearchDisplayController with UITableViewController
I have a UITableViewController, in which I added a UISearchBar as the tableHeaderView using Interface Builder. Then I added a UISearchDisplayController in the nib, and set up all the connections ...
4
votes
3answers
879 views
UISearchDisplayContoller – can't prevent table reload on typing in search bar
I'm trying to set up a search display controller to handle async results from a web service. I've got the basic bits in place but have run into a really strange issue that I can't figure out.
Seems ...
4
votes
5answers
1k views
How do I change the searchDisplayController table view style to grouped?
Hey guys,
I have a searchDisplayController that searches a UITableView that I have.
After entering the search terms, I can see another UITableView that contains the search results. However, I want ...
4
votes
2answers
2k views
How to control the searchResultsTableView of a UISearchDisplayController?
I wonder how to take control over the table view that is used by the UISearchDisplayController. You can't overwrite the searchResultsTableView property of the UISearchDisplayController, because it is ...
4
votes
6answers
7k views
How to use UISearchDisplayController from a controller within an UITabBar controller?
I have an UITabBar controller managing several controllers (using SDK 3.0). One of these is a tableView controller and I need to provide a search capability using the UISearchDisplayController. All of ...
3
votes
3answers
166 views
UISearchDisplayController causes crash after viewDidUnload
I have a project using StoryBoards and UISearchDisplayController used in the context of a UINavigationController, that appears in the root viewcontroller. When I push a new view controller onto the ...
3
votes
2answers
897 views
How to set text in UISearchBar without activating UISearchDisplayController
I'm using a UISearchDisplayController in my app. When the user selects an item in the search results returned I deactivate the UISearchDisplayController. Deactivating the controller clears the text ...
3
votes
1answer
300 views
UISearchDisplayController - Clicking overlay, method called?
Is there a delegate method that gets called when a user clicks on the dark overlay, which basically removes first responder status from the UISearchDisplayController? (I cannot find one in the docs.)
...
3
votes
1answer
861 views
UISearchDisplayController “shouldReloadTableForSearchString return NO” reloads table
Why does my UISearchDisplayController show "No results" even if the shouldReloadTableForSearchString method returns NO? Shouldn't it just do nothing and stay black? How can I prevent it from doing so?
...
3
votes
1answer
537 views
NSPredicates, scopes and SearchDisplayController
Building a search with some custom objects and three scopes: All, Active, and Former. Got it working with the below code:
- (void)filterContentForSearchText:(NSString*)searchText scope:(NSString ...
3
votes
2answers
1k views
UISearchDisplayController not working when created in code?
I'm working on a tab bar application and one of the tabs has a UISearchDisplayController hooked up to a UISearchBar. It's all connected up in the NIB and is working. When I tap the search bar, the ...
3
votes
1answer
2k views
How does the search display controller hide the navigation bar?
When you enter the search bar handled by a search display controller, it slides the view up and pushes the navigation bar up with it. This is easy enough to do, however, when you click a search result ...
3
votes
2answers
2k views
hide UISearchBar below UINavigationBar after cancelButton was called
I'm typically using [self.tableView setContentOffset:CGPointMake(0,40)]; in order to hide the UISearchBar (that I set as header of the tableView) below the navigationBar. Everything works well in ...
3
votes
3answers
3k views
Customize UISearchDisplayController
Are the following objects customizable?
1. UISearchBar Scope Buttons (UISegmentedController)
2. UIResultsTableView
3. Keyboard (at least so it's colored black)
2
votes
1answer
157 views
resize UISearchDisplayController dimmed black overlay
anybody know how to resize the dimmed black overly, once you clicked the search bar ?
i having problem when i clicked cancelled the tableview will expend then animated to disappear.
i using this to ...
2
votes
2answers
79 views
How to debug on the iPhone itself without xcode? UISearchBar/DisplayController crashes
I have a problem: I am programming an app that is using a searchBar and a tableView.
When I click the search bar, type some string to search for, as soon as I hit the cancel button, or delete all the ...
2
votes
1answer
209 views
UIViewController does not retain its programmatically-created UISearchDisplayController
In the UIViewController documentation about the searchDisplayController property 1 it says:
If you create your search display controller programmatically, this property is set automatically by the ...
2
votes
1answer
135 views
Put a Thread to sleep but keep animations going - is this possible?
This might be a strange question but there might be a different solution for what I'm trying to achieve, I'm open to anything that works as needed!
Facts:
I have a UITableView with a UISearchBar ...
2
votes
1answer
298 views
How can I change strings of “Cancel” button, “No Results” label in UISearchBar of UISearchDisplayController?
How can I change strings of "Cancel" button, "No Results" label
in UISearchBar of UISearchDisplayController ?
Please help me!
2
votes
1answer
140 views
Use existing tableView and ViewController with UISearchDisplayController
I have an app that commonly lists Wines throughout the app (full screen or in smaller UIViews). I call this ViewController normally, by allocating the View, assigning the delegate/etc to my main ...
2
votes
1answer
171 views
UISearchDisplayController gray overlay not fully covering table
I'm having an issue where the gray overlay that's automatically put over my UISearchDisplayController when the keyboard is shown doesn't always fully cover the table area (you can see the white on the ...
2
votes
2answers
210 views
UISearchDisplayController - how to preload searchResultTableView
I want to show some default content when the user taps the Searchbar, but before any text is entered.
I have a solution working using settext:
- (void) ...
2
votes
1answer
441 views
UISearchDisplayController inside popover - bad animation on cancelling search
My iPad app uses a popover to perform some searching. The search results are handled using a UISearchDisplayController, and I am having some trouble removing some little graphical artefacts.
My ...
2
votes
1answer
229 views
table view is no longer a searchResultsTableView after returning from a detail view
I'm using a UISearchDisplayController based on this tutorial:
http://developer.apple.com/library/ios/#samplecode/TableSearch/Introduction/Intro.html
I've a table view in navigation controller with ...
2
votes
1answer
228 views
UITableView: Removing cells
Guys, i have a little issue here. Im doing a search to my UITableView. I search "iPhone", it returns to me one result. Its ok. iPhone just has one result. But when i search for iPad, that has two ...
2
votes
1answer
429 views
How to preload or initialize a search using UISearchDisplayController?
I added a UISearchDisplayController to my UITableViewController in InterfaceBuilder. It was very easy to get it working by adding a searchBar: searchBar textDidChange: searchText method that ...
2
votes
1answer
1k views
NSComparisonResult search part of a string?
I am using NSComparisonResult with my SearchController:
for (Annotation *ano in listContent) {
NSComparisonResult result = [ano.title compare:searchText ...
2
votes
1answer
554 views
UINavigationBar Disappears using UISearchBar and SearchDisplayController
Here is my scenario:
(1) I have a TabBarController with the following:
(A) Navigation Controller (rootviewcontroller is a uitableviewcontroller) = Tab 0
(B) UIViewController = Tab 1
...
2
votes
1answer
532 views
How to show No Results screen on UISearchDisplayController?
How can I manually show No Results on a UISearchDisplayController?
2
votes
1answer
719 views
iPhone SDK: SearchDisplayController with Core Data Table Sample Code?
Are there any good samples of using a SearchDisplayController with a Core Data backed tableview? None of the Apple samples I see use Core Data, NSFetchedResultController or NSPredicates.
2
votes
2answers
681 views
UISearchResultsController crashing on device (index beyond bounds for empty array)
I'm using UISearchResultsController to filter data from a fetchedResultsController. Here is the relevant code:
In RootVieweController.h:
@interface RootViewController : UITableViewController ...
2
votes
2answers
850 views
UISearchBar animation hidding button
I currently have a UISearchBar (attached to a UISearchDisplayController), but I reduced the width of the search bar so I could display a custom button to its right when the search bar is not selected. ...
2
votes
1answer
2k views
Why won't my UISearchDisplayController fire the didSelectRowAtIndexPath method?
I am having an odd problem when searching a UITableView using a UISearchDisplayController. The UITableViewController is a subclass of another UITableViewController with a working ...
2
votes
1answer
846 views
Is it possible to change the border color of a UISearchDisplayController's search bar?
I have a UISearchBar added as my table header with the following code.
searchBar = [[UISearchBar alloc] initWithFrame:self.tableView.bounds];
searchBar.tintColor = [UIColor colorWithWhite:185.0/255 ...
2
votes
2answers
126 views
UISearchDiplayController: show all results without entering text?
I have a UISearchDisplayController that is being used to display a long list of options for the user to pick. I filter the list using the search bar supplied by the controller.
It all works ok, ...
2
votes
3answers
4k views
iPhone SDK: Setting the size of UISearchDisplayController's table view
My app's table view does not occupy the full screen height, as I've allowed 50px at the bottom for a banner.
When I begin typing in the search bar, the search results table view is larger; it fills ...
2
votes
2answers
2k views
Keeping UINavigationController's navigationBar hidden after UISearchDisplayController selection
I have a UISearchDisplayController setup with a UITableViewController which is nested inside a UINavigationController. When a selection of a cell is made, UITableView's didSelectRowAtIndexPath method ...
2
votes
2answers
2k views
How to control UISearchDisplayController's own table view?
In my application, when I am not filtering my table, when I tap on a cell, its frame height is increased in order to display a UIProgressView that shows download progress.
However, when I filter the ...
2
votes
1answer
2k views
UISearchBar in a UITableView
I'm trying to mimic the behaviour of a table view like one in the iPod app for Artists - it's a sectioned table view with a section index on the right and with a search bar at the top, but initially ...
2
votes
2answers
854 views
Is there a way to remove the “No Results” label from a UISearchDisplayController?
I have a three20 controller that is using the new sdk3 UISearchDisplayController.
I also have a model that is loaded from the network, it seems that no matter what I do the default behavior for the ...
2
votes
4answers
1k views
iPhone Text entry with completion and DONE button (not search)
Using iPhone SDK 3.0, I wish to allow text entry with (optional) completion options that appear as typing is occurring, i.e. also allowing freeformat entry. As such I am using a UISearchBar (which has ...