Tagged Questions
An apple class that implements a text field control for text-based searches
20
votes
6answers
2k views
UITextField auto correction crash in iOS 4.3 on simulator
The UITextField's auto correction crashes my app on the simulator with iOS 4.3 sdk build target. Works fine on the device and in the simulator with iOS 4.2 sdk.
Anyone else experiencing this issue? ...
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 ...
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 ...
12
votes
3answers
6k views
Change UISearchBar/Keyboard Search Button Title
In the UISearchBar control, is the a way to change the Search key title for the keyboard to Done?
12
votes
8answers
5k views
Light gray background in “bounce area” of a UITableView
Apple's iPhone apps such as Music and Contants use a search bar in a UITableView. When you scroll down so that the search bar moves down, the empty space above the scroll view's contents has a light ...
11
votes
1answer
178 views
How to show keyboard without touching the UISearchbar?
Can I show the keyboard for UISearchbar on viewWillAppear method call without touching the UISearchbar ?
10
votes
4answers
5k views
UISearchbar clearButton forces the keyboard to appear
I have a UISearchBar which acts as a live filter for a table view. When the keyboard is dismissed via endEditing:, the query text and the gray circular "clear" button remain. From here, if I tap the ...
9
votes
4answers
6k views
Scroll UITableView so that the header isn't visible
I've got a UITableView with a UISearchBar as the tableViews.tableHeaderView. Just like the new Mail.app, Notes.app, etc. in 3.0. I want to hide the SearchBar until the user drags it in his sight.
My ...
8
votes
4answers
5k views
UISearchBAR scopeBar tintColor
Has anyone managed to color the scopebar portion of a UISearchBar, it has a tintColor property but setting it does not affect the attached scopebar UISegmentedControl. Ive got a handle on the bar to ...
7
votes
1answer
293 views
UISearchBar - what is “search results button” for?
(Duplicate of this question, but I figured I could try again, since that one wasn't answered...)
The UISearchBar on the iPhone has an option showsSearchResultsButton. When you turn it on, it shows a ...
7
votes
1answer
557 views
How to implement content search in iPhone?
I am trying to implement the content serch in iPhone using UISearchBar my code is as below.
- (void)searchBar:(UISearchBar*)searchBar textDidChange:(NSString*)searchText {
if([tableData count])
...
7
votes
3answers
3k views
Adding button to left of UISearchBar
I am tearing my hair out on this one. My client wants to add a button to the left of a search bar like the example below:
But I just can't figure out how to do it. Apple don't seem to provide any ...
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 ...
6
votes
1answer
2k views
UISearchBar disable auto disable of cancel button
I have implemented a UISearchBar into a table view and almost everything is working except one small thing: When I enter text and then press the search button on the keyboard, the keyboard goes away, ...
5
votes
3answers
138 views
Adding UISearchBar as tableHeaderView in xib not works
I added UISearchBar as tableHeaderView for UITableView in xib, by just dropping UISearchBar onto UITableView.
It is working fine, when the table has more than 6 rows.
But when there is less than 6 ...
5
votes
5answers
622 views
Using Singleton synchronized array with NSThread
I have a books app with a UISearchBar, where the user types any book name and gets search results (from ext API call) below as he types.
I am using a singleton variable in my app called ...
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
1answer
1k views
How do you hide/show UISearchBar's scope bar with animation?
I want to show no scope bar when the table is empty (before the search bar edits for the first time), no scope bar when it's editing, and finally show it when editing done. I know about the ...
5
votes
3answers
4k views
Can I hook into UISearchBar's Clear Button?
I've got a UISearchBar in my interface and I want to customise the behaviour of the the small clear button that appears in the search bar after some text has been entered (it's a small grey circle ...
4
votes
2answers
2k views
Locking a UISearchBar to the top of a UITableView like Game Center
Hey guys, I was looking around for a solution to this, but couldn't find anything anywhere. I hope you can help.
There's this cool feature in the UITableViews in Game Center and the search bars they ...
4
votes
2answers
1k views
iphone UISearchBar Done button always enabled
I have a UIViewController with a UISearchBar. I have replaced the Search Button by a Done button.
However, when one taps on the searchbar, the Done button is initially disabled. This occurs until ...
4
votes
3answers
876 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
536 views
How to replicate UISearchBar scrolling behavior in Notes.app?
When you scroll a tableView down (Notes.app), the search bar stays fixed to top, but when you scroll a tableView up, the search bar is hidden. That's what I want.
Looking at scroll indicator it ...
4
votes
3answers
3k views
Gray UISearchBar w/matching scope bar programmatically
I'm trying to recreate this UISearchBar (as seen in the Table Search example code):
All the examples I've seen to do this involve using a xib, however I need to do it programmatically. The problem ...
4
votes
4answers
1k views
UISearch bar case insensitive?
In a table view I have set a UISearchBar, set the delegate, and add the protocol.
When user tap a word everything is okay except that the search of "tennis" is different from "Tennis".
How can I ...
4
votes
1answer
1k views
Make UISearchBar first responder when View Loads
I have a simple UIViewController and a UISearchBar, when the view loads I want to have the search bar become the first responder right away so that the keyboard is showing and they can start typing ...
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 ...
4
votes
3answers
5k views
iPhone UITableView with UISearchBar and refreshing Section Index
I have a UITableView with a UISearchBar at the top of it.
I also use the Section Index delegate to display ABC...XYZ on the right hand side.
Problem occurs when I click on the Search Box and the ...
3
votes
2answers
116 views
Hide UIToolBar when using an UISearchBar
Hello I'm currently encountering a problem when I try to hide a toolBar With a searchBar.
I have a modal view with an UIToolBar, an UISearchBar (and its controller) and an UITableView.
I am using a ...
3
votes
1answer
304 views
iOS autocomplete feature
What most people mean by autocomplete is that the app has a textview/searchbar/whatever which accepts user input. Attached to this component is a tableview which keeps updating based on the user ...
3
votes
2answers
743 views
How do I change the UISearchbar cancel button's text color
I have a UISearchBar as seen below. How can I change the text color for the cancel button?
3
votes
2answers
2k views
how to custom UISearchBar
I want to customize the search bar, I mean the white box. Can I do it?
Is there some documentation about that?
Is there a way to hide the white box, but not the letters.
Can I at least make the box ...
3
votes
3answers
3k views
UISearchBar on the top of UITableView which can hide but stay close to UINavigationBar
I would like to have a UISearchBar on the top of my UITableView which hides when you scroll down: The answer is easy, I just need to add it on my table view header like this:
UISearchBar *search = ...
3
votes
1answer
299 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
3answers
688 views
iPhone: UISearchBar how to search for “” String?
I want to be able to search for a String without any character in it. The problem is, that the default keyboard does not show up the search button, when there is nothing written in the UISearchBar.
...
3
votes
1answer
224 views
Disable Scrolling of UISearchbar that is added to UITableView
I have add a UISearchBAr to the UITableView to implement search functionality.
But after searching is done, the UISearchBar is also scrolling and disappearing along with the UITableView. I just want ...
3
votes
2answers
723 views
set first text on UISearchBar
i want to set first text on my UISearchBar -the text is "Search"-, and the text will disappear when user start typing.
just like this:
how it could be.???
thanx
3
votes
1answer
961 views
UISearchBar is not displaying Scope Bar
I use the following code to display a UISearchBar with a Scope Bar.
UISearchBar *searchBar = [[UISearchBar alloc]initWithFrame:CGRectMake(0, 0, 320, 45)];
searchBar.barStyle = UIBarStyleDefault;
...
3
votes
1answer
2k views
UISearchBar delegate not called when used as UINavigationBar titleVIew?
I have a UITableViewController that I have specified as a UISearchBarDelegate. Up until now, I had programmatically added the UISearchBar to the headerView of the table, and there were no problems.
...
3
votes
1answer
1k views
UISearchBar cancel button color?
When I drop a UISearchBar into my view inside Interface Builder, and change its style to Black Opaque, the cancel button stays unfittingly blue / gray and doesn't become black.
How can I make the ...
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
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
UISearchBar tinted like Contacts
The UISearchBar in my UITableView header is the strong color.
The TableSearch uses the more subtle code, but I'm not sure how it's doing it. I've looked at the TableSearch example code. Specifically, ...
3
votes
4answers
221 views
iPhone: How long will it take to search?
Here is a very and straight forward question:
How long will it take to search an array of 200-300 strings locally? What about remotely?
2
votes
0answers
59 views
UISearchBar: how can I stop it resizing when clicked?
I have a UISearchBar (with UISearchDisplayController) as title view of UINavigationBar. There are also two buttons on either side of the search bar within the nav bar.
When clicking on UISearchBar, ...
2
votes
0answers
169 views
Add SearchDisplayController Over mapKit to search Address book
I've been looking the web for this solution. Its exactly like the google maps application on the iphone, where as you search, it looks through the address book to find suggestions for what your ...
2
votes
3answers
132 views
UISearchBar Not shifting up
Somehow i dun know why does the default animation fails.
my Search bar did not shift up as it supposed to be.
the view is in UIView, i'm wondering if this is the problem.
Included the IB layout
...
2
votes
1answer
155 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
1answer
104 views
Searching an NSSet attribute in CoreData with a searchbar
I have a CoreData model with an object "bar" which has a to-many relationship "drinks" to the entity "drink".
The entity drink has only one attribute called "name".
Now in my app I have a tableView ...