Tagged Questions

1
vote
2answers
44 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 …
0
votes
2answers
25 views

UISearchBar with Controller in a normal UIView?

What I want: A UIView with a UISearchBar at the top. Starting to edit the searchBar dims the current view and shows search results from another [UITableView]Controller. What I've tried: In …
0
votes
1answer
112 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 …
0
votes
1answer
76 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 …
0
votes
1answer
88 views

How does the search display controller hide the navigation bar?

Hi there, 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 …
1
vote
3answers
222 views

Customize UISearchDisplayController

Are the following objects customizable? 1. UISearchBar Scope Buttons (UISegmentedController) 2. UIResultsTableView 3. Keyboard (at least so it's colored black)
0
votes
2answers
288 views

Activating UISearchBar upon selecting a Tab Bar Item - Help or Hindrance?

I'm working on an app where I've been asked to add a UITabBarItem to our app's Tab Bar with its own dedicated Search function. This is in addition to the built-in searches already throughout the app …
0
votes
1answer
96 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 …
1
vote
3answers
743 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 …
0
votes
0answers
95 views

Search display controller and sqlite

Hi. I am a n00b on iPhone programming, and I am currently experimenting with the uisearchdisplay controller i have downloaded Apples example. I tried to modify it by using a sqlite query to load the …
0
votes
2answers
105 views

Can’t get search bar to display in iphone application

Hi, I've trying to get a search bar to display in my application. I'm following the example show in the TableSearch sample application. I've more or less implemented it exactly the same way apart …
0
votes
3answers
247 views

Showing UISearchBar “X” within text field vs. adjacent Cancel button

I know I can set showsCancelButton to NO for a UISearchBar ... until you tap the search bar text field, and then the cancel button appears anyway! (At least it does for me.) Is there a way to show …
0
votes
1answer
217 views

UISearchDisplayController usage with network-fetched data

I have a UITableViewController subclass that renders a list of pre-set categories and fetches a list of sites/urls for each of them. I want to add a search capability that would allow to search by a …