The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
28 views

searchBarSearchButtonClicked not firing

I have researched this question. Looks like this is a common question but nothing I have tried has worked. I am very new to iPhone app development and Objective C. All I want to do at this point is ...
0
votes
0answers
8 views

Show searchDisplayController.searchResultsTableView by touching bookmark button

Is it possible to show self.searchDisplayController.searchResultsTableView by clicking on bookmarks button? (searchBarBookmarkButtonClicked: method will be called). As I see, this table shows up ...
0
votes
0answers
29 views

SearchBar works only after I call a UIAlertView

I have a search bar in my application but it sometime works, sometime not. The keyboard up normally, but when I press any keyboard button, nothing happens. When it does't work not even call -(BOOL) ...
0
votes
1answer
108 views

About UISearchBar:textDidChange of predicateWithFormat

I have a question,I don't know why Method 2 can't get value ? Method 1:can get value! -(void) searchBar:(UISearchBar *) searchBar textDidChange:(NSString *)searchText{ NSString *firstName = ...
0
votes
0answers
83 views

UISearchBarController: textDidChange delegate method not called

I have an UISearchBar (in the section header of a TableView). The delegate method: (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchString; gets only called when the user ...
-2
votes
1answer
118 views

how to set uisearchbar inside uitextfield and searchbar is not appear,but their delegate methods must be called? [closed]

i want uisearchbar inside uitextfield i.e.both uitextfield and uisearchbar must have same framesize.I declared uitextfield programatically and i created uisearchbar programatically ,i given searchbar ...
0
votes
2answers
120 views

searchBarSearchButtonClicked doesn't work together with shouldChangeTextInRange

I have the following UISearchBar delegate method that works by its own (it's called when it's alone). -(void)searchBarSearchButtonClicked:(UISearchBar *)searchBar{ [self ...
0
votes
0answers
27 views

Two UISearchBars in UITableView

I am trying to place two UISearchbars in a headerview of a UITableView. I am doing it like so _searchOne = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 180, 45)]; _searchOne.delegate = self; ...
0
votes
1answer
106 views

UISearchBar Dismiss Method

For a UISearchBar with UISearchDisplayController, when the searchfield is clicked, the keyboard appears and an overlay shows over the tableview. When cancel is clicked - ...
0
votes
1answer
60 views

uisearchbar perfomance issue textDidChange

I am working on search functionality in my application, I am having list of items based on predicate i am writing the search operation. Search will be based on each character, While doing this search ...
1
vote
3answers
77 views

Open a detailViewController after use of UISearchBar

I have a UISearchBar to search some data in a tableView and then, after searching, selecting a row to open a detailViewController . To do this it is necessary that the lines keep the index path and do ...
1
vote
0answers
110 views

Getting ScopeButtons to work in MonoTouch UISearchBar

I've created a custom UISearchBarDelegate. In the OnEditingStarted-event, I'm adding scope buttons to the search bar: public override void OnEditingStarted(UISearchBar searchBar) { ...
3
votes
1answer
147 views

How to reset seachDisplayController View to original state programatically

I have the UISearchDisplayController page view as follows (original state) After clicking on the searchbar and typing some search term, I get a list of results in the table After clicking on an ...
2
votes
2answers
387 views

NSCompoundPredicate

I'm trying to filter a UITableView's data using a UISearchDisplayController and NSCompoundPredicate. I have a custom cell with 3 UILabels that I want to all be filtered within the search, hence the ...
0
votes
1answer
101 views

UISearchBarDelegate on UITableView with Sections Issue

I'm having issues with implementing the UISearchBarDelegate on my UITableView with sections issue where every time I try to search for something inside the UITableView, either it doesn't display the ...
1
vote
3answers
540 views

Why my UISearchBar`s frame is changed by the UISearchDisplayController

I write UISearchBar in my TopBar.m like this: _tempSearchBar =[[UISearchBar alloc]initWithFrame:CGRectMake(44, 0, 320 - 44, 43)]; _tempSearchBar.barStyle=UIBarStyleDefault; ...
0
votes
1answer
68 views

Searching a tableview without using UISearchBar

I am writing a phone-like app with a custom numeric keypad. I would like to search through my contacts for name/phone number as I type on the numeric keypad and displaying the results in a small ...
0
votes
1answer
57 views

How to reset UISearch from Appdelegate method applicationWillEnterForeground

i want to reset my UISearch when app is entering background, or entering foreground again. It would be enough when the tableview from UISearch gets hidden. But when i try to hide it from ...
1
vote
2answers
533 views

ios - UISearchDisplayDelegate doesn't search when search text is empty

I have a table view with a search bar, I want to search when the text is empty. I want to display all the data, when the search text is empty (when the user doesn't type any search text) Note - ...
0
votes
1answer
316 views

Delegate Methods Not Firing on Search Results Table

All, I have a UITableView w/detail, with a Search bar, created from code. Works fine on selected items except it doesn't work when an item is clicked from the search results; no delegate methods ...
1
vote
1answer
121 views

UISearchbar how to determine if last character typed is a backspace

I have a UISearchbar with delegate method - (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText { if(searchText.length>3){ [self updateSearchString:searchText]; } } ...
1
vote
3answers
478 views

UISearchBar not responding when clicked

I've been trying to find the solution for hours, but alas no dice... I've been trying to implement a UISearchBar purely programatically (no xib, no interface builder). Here is my .h header: ...
1
vote
0answers
320 views

search display controller and hitting the cancel button causes search results to not render

I have a UITableViewController that implements the UISearchBarDelegate and UISearchDisplayDelegate protocols. I have gotten a bug where if I click on the Cancel Button in the search bar, it won't ...
3
votes
1answer
399 views

UISearchBar full screen

I have uisearchbar in a uiview which is already subview of a uiviewController, I want to show the search bar in full screen when search bar is edited, i need to show the searching event in full ...
2
votes
1answer
1k views

UISearchBar implemented with Storyboards

I am very new to iOS development, very excited though. I have built an app the uses storyboards and populates a UITableView with the contents of a plist file. I managed to get everything running ...
2
votes
4answers
3k views

How can I disable/enable UISearchBar keyboard's Search button?

I am using UISearchBar in my code. I have imported its delegate in header file and implemented some delegate methods in implementation file also. When we tap on the UISearchBar, a keyboard will ...
7
votes
2answers
915 views

Is it not possible to put UISearchBar in UITableView header?

I am trying to accomplish this: Consider a table view with Search Bar on its header.Table view gets refreshed whenever string is searched. I am having 2 classes ...
2
votes
4answers
4k 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
567 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
346 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
1k 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
537 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 ...
2
votes
1answer
3k 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) ...
1
vote
2answers
949 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 ...
0
votes
1answer
1k 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
139 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
3k 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 : ...
4
votes
4answers
3k views

UISearchBar delegate not responding to cancel button

I have a UIViewController that is a UISearchBarDelegate and a MKMapViewDelegate. The searchBarSearchButtonClicked event works fine, but when testing in iOS 4.2 the searchBarCancelButtonClicked never ...
0
votes
1answer
459 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 ...
1
vote
2answers
382 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]; } ...
0
votes
1answer
3k 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 ...
2
votes
4answers
821 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 ...
7
votes
3answers
2k 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
3answers
3k 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 ...
1
vote
1answer
431 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 ...
8
votes
1answer
5k 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 ...
1
vote
1answer
587 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 ...
2
votes
1answer
3k views

Customized UISearchBar

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

How can I hide the UITableView that UISearchBar created?

In my iPhone application 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 a row, I ...
0
votes
1answer
1k 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 ...

1 2