An apple class that implements a text field control for text-based searches
0
votes
0answers
9 views
how to change the shadow offset of the uisearchbar placeholder?
I have found some ways to change,but they have failed, I use try catch to make sure the programme don't crash,thank you
- (void)setSearchIconToFavicon {
UITextField *searchField = ...
0
votes
1answer
37 views
NSRangeException NSArray objectAtIndex: index 11 beyond bounds for empty array Objective C
I have a search bar that searches the 4square Api for venues.
Sometimes when I search for a specific word and scroll down my app crashes with a empty array.
Below is my code and error code.
*** ...
0
votes
0answers
22 views
Access Custom Header view for UiTable
I have a custom header view define for a UITableView with a registered nib. The header view has a search bar and I want to be able to assign first responder to the search bar. I can get the header ...
0
votes
1answer
28 views
UIAlertView for No Matches Found in Search
I have a UISearchBar on my MKMapView that searches the maps annotations. I'm trying to incorporate an alert that lets the users know if no matches were found. The problem is that the alert comes up ...
1
vote
1answer
48 views
UITableview cellForRowAtIndexPath method is not executing?
When i click search it executes a search class and after finding the results it executes numberOfRows method but then it is showing empty table. It is not executing cellForRowAtIndexPath method .
...
0
votes
1answer
48 views
Check if String is a Partial Match to Another String
I have a search bar on my map view that allows the user to search for the name (annotation title) or address (annotation subtitle). I have it working just fine if the user types in the entire title or ...
0
votes
0answers
32 views
Search Annotations on MKMapView
I have a map view with many annotations, each with a title and subtitle. There is also a UISearchBar on my map view. I want the user to be able to search for either the name of the location ...
0
votes
0answers
23 views
UITableViewIndex on top of UISearchBar cancel button
I have an UITableView with an UISearchBar in the table views header. To this table view I also have an index array to the right, that guides to the right section. My problem is that when doing a ...
1
vote
1answer
31 views
MapKit with UISearchBar
So if I understand correctly you can no longer use certain Google APIs with iOS (ex. Google Places). So how can we use the iOS MapKit with a UISearchBar to search for locations? The map on my iPhone ...
0
votes
2answers
18 views
UISearchBar Cancel Button Not Working
I have a UISearchBar on my MKMapView that I'm going to use to search annotations. I'm having trouble getting the cancel button to work. I create the search bar in my viewDidLoad method like this:
...
1
vote
0answers
34 views
UISearchBar showing error?
When i type text in UISearchBar for searching after pressing search in keypad .It throwing error at
searchResultsPopover = [[UIPopoverController alloc] ...
0
votes
1answer
32 views
iOS: Removed cancel button reappears after using search controller
I am using an ABPeoplePickerNavigationController in my app and have overrode the navigation bar buttons to my own using UINavigationControllerDelegate.
- ...
-1
votes
1answer
18 views
Styling to recreate the amazon filter? [closed]
I want a similar search filter for an application. I have a dropdown list with input box plus go button? Can anyone recreate the css for it?
0
votes
0answers
3 views
UISegmentedControl custom selection color in inputAccessoryView
I created a little category for UISegmentedControl which sets the tint color of the selected segment:
@implementation UISegmentedControl (selectedColor)
- (void)setSelectedSegmentColor:(UIColor ...
1
vote
1answer
38 views
Adding a Button to a UISearchBar with a TableView and Refresh Control
I've been searching for two days for a solution to this problem, and I just can't figure out a cohesive solution. What I'm trying to do is:
Have a UISearchBar with an extra button to the left like ...
0
votes
0answers
26 views
search in grouped uitableview
I am new in objectiv-C developpement , and I try to filter the content of a grouped tableview.this is what I did but still dosen't work :
- (void)filterContentForSearchText:(NSString *)searchText ...
0
votes
1answer
30 views
How to use Search Bar for enter text and filter for selection?
I use textfield for enter field of my web service.For example I entered StationID textfield=35016.
I have total 770 StationID and every station have a name. stationId 35016 name is New Istanbul LTD ...
0
votes
1answer
18 views
Search bar behavior similar to native Contacts app, but with a refresh control
I've followed the steps in the accepted answer of this question: Sticky search bar and section header behavior similar to native Contacts app
All works fine, but I want to add a UIRefreshControl to ...
-5
votes
0answers
26 views
Adding a Search Bar to table views non-programatically [closed]
Is there a way to implement a search bar to a table view where the table view has a static number of cells who have their values (titles) set in the storyboard, not in a UIController?
0
votes
0answers
79 views
UITableView with Fixed position Search Bar/Custom Filter Bar… dynamic height
I'm developing an app for iOS in Rubymotion (http://www.rubymotion.com) and am wondering the best way to approach a situation. I have included in image with the flow to show the expected results. ...
0
votes
2answers
58 views
UISearchBar does not get focus on iPad split view
this is my first question on Stackoverflow. I have used SO extensively while coding an universal iOS App.
I've hit a dead end with an issue about a UISearchBar:
I have an universal app, with a ...
-2
votes
3answers
61 views
Search bar in table view not working [closed]
I added search bar to table view, but I don't know, how to figure out.
Please find my code:
// ViewController.m
#import "ViewController.h"
@implementation ViewController
@synthesize names;
...
0
votes
1answer
25 views
How to set UISearchBar text before its view controller has appeared?
I have a UIViewController with a UITableView and UISearcBar in it. The UISearchBarDelegate is connected. Its called SCOrdersVC:
//SCOrders.h
#import <UIKit/UIKit.h>
@interface SCOrdersVC : ...
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
3answers
66 views
Unable to hide keyboard on click search button in a UISearchBar
I am using a UISearchBar to search a list, but when I click on the search button
on the keyboard, the keyboard does not hide.
Please help me to fix this issue.
Here is my code
...
0
votes
0answers
14 views
Passing data from tableview to detailview with seachbar tutorial?
I have searched everywhere for a tutorial covering this. All i found was either one just covering search or covering passing data. I've tried combining them but it won't work, i'm just not good enough ...
0
votes
2answers
32 views
uisearch bar width is reduced when change orientation from landscape to portait
i am using tableview with search bar display controller, it shows good in portait and landscape view, but rotate from landscape to portait search bar size is reduced ,how to change the original size
...
0
votes
0answers
50 views
How to create a universal UISearchBar for the iPhone
I have an iOS application that consists of many views.
Every view has a UISearchBar manually added to it through IB.
Typically, a UISearchBar would be used to filter information inside a UITableView ...
2
votes
3answers
38 views
Detect Pause when user stop type in UISearchBar
I have the following UISearchbar code:
- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
{
NSTimer *myTimer;
NSLog(@"Timer=%@",myTimer);
if (myTimer)
{
...
0
votes
1answer
32 views
SearchBar hangs on iphone but works fine on simulator
my app has around 200 UITableView rows, when i use simulator on xcode to filter data through UISearchBar, it filters and shows result instantly however, when i run my app in my iphone (iphone4, iOS ...
0
votes
1answer
22 views
To implement the method search in Composed UITableView
I have used a UITableView in my application. In that, instead of default UITableView, I used a composed one using UILabels.
I have a list of objects and in each of the table rows I have 6 labels ...
1
vote
1answer
22 views
Toggle Searchbar View using UIScrollView
I have a search bar embedded above a tableview which is visible as soon as the view is opened i want it to be hidden when the page loads and on click of the search button (Bottom left corner) i want ...
0
votes
0answers
49 views
Embed a UISearchBar in a ViewController's View
I'm looking to add a search bar to an existing view controller(s). I have a view without a with a search bar to build out a URL to send to a web service. I'd like to populate incoming results in a ...
0
votes
0answers
25 views
On iPad only, iOS appears to ignore - [searchBar sizeToFit]
UITableView, UISearchBar, UISearchDisplayController, iOS, Universal App,ScopeBar Xcode 4.6.2
The Universal app has a UITableView with a UISearchBar with ScopeBar in the header location.
Everything ...
0
votes
0answers
39 views
ios UISearchDisplayController dismiss when scroll result table view
I used UISearchDisplayController to implement Search function. My main controller A has a tableview and I added UISearchBar to its tableheaderview.
I assigned:
...
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
101 views
Filter NSMutableDictionary data in UITableView
I need to filter data in UITableview by text entered in UISearchbar. I followed this example but there data in NSMutableArray and I can't alter it under my requirements. My data is ...
0
votes
1answer
71 views
iOS: Background Color — UITableView and Accessory to have same background color
I have a UISearchBar. When I select the cell, I'd like the entire cell to have a [UIColor grayColor];
With the code below, the contentView color appears Gray; however, the background accessoryType ...
0
votes
1answer
58 views
IOS: UISearchDisplayController and UITableView.
I've a question about best object to use in my App.
I have a three columns UITableView containing a NSString, NSDate, double. I would like to help users filtering and make the easiest query. Using ...
0
votes
0answers
33 views
FilterContentForSearchText in UIsearchDisplayController working with collections
Good morning everyone. I have got a problem with filtering data using UISearchDisplayController. Instead of having a simple NSArray and easy using a predicate, I have a collectione and I would like to ...
0
votes
2answers
42 views
SearchBar for iPhone
I would like to implement UISearchBar in my app. My app consists of a view with a text in the middle, and by swiping left or right you get the same view but with another text.
My goal is to add ...
0
votes
1answer
62 views
Expanding Search textfield, but then buttons don't work on first click
Okay so I got one of these fancy search boxes to expand (ie:apple.com) My issue is that what if the users decides they didn't to search after all and decides to click the nav instead it takes 2 ...
0
votes
1answer
86 views
Reloading UITableView resets frame after animation
I've been stuck on this issue and I'm really curious why it's happening. I've re-created my issue using a simple example shown below. I placed a UITableView with a custom UITableViewCell (containing a ...
0
votes
0answers
24 views
uisearchbar into navigationbar
I try to put UISearchBar inside the titleView of the UINavigationBar and I do it simply with:
self.navigationItem.titleView = self.searchDisplayController.searchBar;
The problem is that in this way ...
0
votes
1answer
92 views
How to add a search bar at the bottom of a table view in Xcode?
I am developing an iOS application, and I want to add a search button that initiates a search of a table view. When searching, the search bar should not be scrolled with the table cells.
0
votes
2answers
47 views
How to trigger cancel button in UISearchBar?
How to trigger programmatically cancel button in UISearchBar, like if you have tapped cancel button?
I have a UISearchBar in the top of a UITableView and after a search, when someone select a row, I ...
0
votes
1answer
47 views
Cell at UISearchController SearchTableView not responding to didSelectRowAtIndexPath
I have a main table view with a search display controller. I'm using a custom cell.h which implement
(void)setSelected:(BOOL)selected animated:(BOOL)animated
When I select the cell from ...
2
votes
2answers
135 views
Placeholder text misaligned in UITextField of UISearchBar
I'm trying to customize UISearchBar's font through appearance proxy. It works, but somehow, the placeholder text is not centered vertically. I tried to set the vertical alignment property; the ...
0
votes
0answers
62 views
How to add a UISearchBar to two TableView in the same UIViewController
I am using JASidePanel - https://github.com/gotosleep/JASidePanels, to create the Menu effect.
I am working with xib.
My class extends an UIViewController.
I dont know how to show to another ...



