Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
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 ...
4
votes
2answers
663 views

searchBarCancelButtonClicked delegate method is not called. Is there any way to call?

UIViewController to implement a view to placing an UITableView UISearchBar and being implemented. But you can not call searchBarCancelButtonClicked. Do not know what the reason.
2
votes
4answers
499 views

Use NSFetchedResultsControllerDelegate to update TableView sections & rows after NSPredicate change

Is there a way to update a UITableView sections and rows after changing the fetchedResultsControllers NSpredicate (and executing the fetch)? I would like to use controllerWillChangeContent delegate ...
2
votes
1answer
2k views

Customized UISearchBar

I've got an app with the following class: @interface SearchViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, UISearchBarDelegate> @property (nonatomic, retain) ...
1
vote
2answers
260 views

Keyboard is not responding after implementing UISearchBar delegate method

I have an UISearchBar which i implemented in my viewDidLoad: by code. I have also set the UISearchBarDelegate. Now i want to restrict the user from entering more than 5 chracter So i implement this ...
1
vote
2answers
181 views

iPhone UISearchBar takes two clicks to be selected

I have a UISearchBar in my app, and I'm running the following code with it: - (void)searchBarShouldBeginEditing:(UISearchBar *)searchBar { [searchBar setShowsCancelButton:YES animated:YES]; } ...
1
vote
1answer
269 views

Can't make table view inactive when search bar is in use. iPhone

I have a table view with a search bar above it, and when the search bar is pressed I want the table view to become inactive. So I have this method: - (void)searchBarTextDidBeginEditing:(UISearchBar ...
1
vote
1answer
343 views

Search Display to not show results until search bar is tapped

I think I may be missing something obvious: Is there a simple way to modify the UISearchBar or UISearchDisplayController so that it doesn't reload the view after each letter typed but only after the ...
0
votes
2answers
64 views

Customizing search bar in iPhone application Development

In my application I have to add a search bar at the head of the tableview. I am able to add the searchbar but problem is without adding default search bar of ios can i add my customize search bar?? I ...
0
votes
1answer
79 views

How can i search data from tableview cell?

At first of all i have tried a lot to solve this problem but i am sorry!!! Now my problem is... I have an UITableview controller which representing fetched xml data. For representing these data i ...
0
votes
2answers
112 views

How to get characters with uitextfield in searchbar before clicking ok button with keyboard?

I have a UISearchBar with UITextField, and when I input a letter to the UITextField in Chinese or Japanese, just like "w", I found that the keyboard will show a panel which let user to choice a ...
0
votes
1answer
106 views

UISearch bar not calling searchBarTextDidBeginEditing

I have a simple view controller with a uisearchbar and a uitable. My problem is that when search bar is tapped I see delegate function searchBarShouldBeginEditing being called but not ...
0
votes
1answer
164 views

search bar not working?

i have a SQL file where 5 different type of data is stored. I am adding this data in a dictionary specified with keys. and then i am adding this dictionary to tableData array as a dataSource for table ...
0
votes
1answer
256 views

resign keyboard when losing focus on uisearchbar

I'm making an UISearchBar option in the navigationbar of my app. My app consists of multiple views and subviews. I have this mainview which has 3 other views on himself. one of it is empty (for now) ...
0
votes
1answer
290 views

SearchBar text empty when searchBarSearchButtonClicked called

I've implemented the searchBarSearchButtonClicked delegate method in my view controller - (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar { searchBar.text = textView.text } The ...
0
votes
1answer
79 views

UISearchBarDelegate in landscape doesn't work

Quite simply, I'm implementing UISearchBarDelegate, but in landscape mode it looks wrong. The search bar doesn't stretch all the way right. Is UISearchBarDelegate not suppose to be used in landscape ...
0
votes
1answer
505 views

How to hide/disable UISearchBars Scopebar

this is my first iOS project and I am trying very basic things here. I am using a sample code from apple developer site as a base : ...
0
votes
1answer
247 views

UISearchBar not displaying correctly in UTableViewHeader

Added a uisearch bar and uisearchbardisplaycontoller programatically (NO XIB) and the search bar sorta displays in the table header but is non functional. if setActive:YES, setActive:NO on the ...
0
votes
1answer
1k views

Strange UISearchBar cancel button behaviour in iphone (Working fine in Simulator)

I am showing some Lists in UITableView. For sorting purpose i have used UISearchBar. I am getting some strange behaviors of Cancel button Steps to reproduce Search for something Notice that while ...
0
votes
2answers
750 views

UISearchBar and event fired when 'X' element is tapped

On the UISearchBar, there's an X element that allows you to clear all of the contents at once. Is there a way to get notified when this happens? UISearchBarDelegate::searchBarCancelButtonClicked is ...
0
votes
2answers
1k views

How can I hide the UITableView that UISearchBar created?

In my iPhone application I am writing I have a search bar and search display controller. When the user types something in the search box, the table view loads and is now visible. When a user clicks on ...
0
votes
1answer
722 views

Search bar delegate - difference between searchBarShouldBeginEditing / searchBarTextDidBeginEditing?

What's the difference between them? In my experimentation, they seem to get called during the same action - once the user taps the search bar to bring up the keyboard. This is despite the user not ...