Questions tagged [uisearchresultscontroller]

62 questions
0
votes
2 answers

Cannot assign a value of type '[String]' to a value of type '[MovieVO]' - Swift

class ListViewController: UITableViewController, UISearchResultsUpdating { var list = [MovieVO]() var filteredlist = [MovieVO]() var resultSearchController = UISearchController() func…
0
votes
2 answers

Change the Top Status Bar's Color of the SearchResultController (using Swift)

I created a Search Bar. When i search something, the SearchResultController appears and presents the result. But the status bar is all white ! The problem is that I changed the Status Bar Style to white and that the Status background is also white…
Omid
  • 178
  • 3
  • 12
0
votes
1 answer

UISearch Bar in ios 8

I am getting JSONArray data and show phone numbers in table I am using UISearchBar in UITableView. When I am type in search bar it reload data and show type value in first cell. But i clicked first cell means it show old array value. -…
0
votes
1 answer

searchDisplayController dim view stays after first search

I am using searchDisplayController for search functionality. On the click of the search button, I do folowing thing: [mySearchBar becomeFirstResponder]; First time, everything works fine. I do following in searchDisplayControllerDidEndSearch (which…
0
votes
1 answer

transition visual effect from the bottom for table search

Is it possible to controll the transition visual effect from the bottom for table search ? I want to make this effect :
Adina Marin
  • 663
  • 1
  • 4
  • 15
0
votes
1 answer

iPad SearchViewController crash _PFArray objectAtIndex beyond bounds

I'm working on the iPad version of my application and I'm facing a strange problem. Here's the structure of the application: UISplitViewController ->MasterViewController -->NavigationController --->TableViewController ---->PrototypeCells …
Rui
  • 69
  • 1
  • 6
0
votes
1 answer

Auto search in searchDisplayController

Normally, user enter text in uisearch bar and when user tap on search button, we request web service and show in searchResultsTableView. My current case is instead of typing in uisearch bar, it is to put search text programmatically there and…
0
votes
0 answers

iOS programmatically added UITableView and UISearchDisplayController

I have a UIViewController into which I want to add a UITableView and a UISearchBar. The UISearchBar should not be added to the tableView but stay just above the tableView. I came up with this implementation for the containing viewController: -…
0
votes
1 answer

Why is my Search Bar within the friendsviewcontroller not displaying?

I have two ways of searching for friends within my app. One of them is a snapchat similar interface where the added friends are shown and possibility of adding a friend is shown with a + sign. I tried adding a search bar somewhere within the area…
Gavin
  • 661
  • 2
  • 7
  • 10
0
votes
1 answer

UISearchController not updating with PFQueryTableView

Attempting to implement a UISearchController on my app using Parse.com to query. There are some examples online but for the older 'UISearchDisplayController' which is now deprecated. Anyways I seem to got everything working correctly as far as…
0
votes
1 answer

UISearchbarController is returning a wrong indexpath?

Im working on a tableview with a searchBardisplayController but when I type a search this shows the correct results but when I select the cell shows me a different selection (such as if I select a cell when the tableview is normal, the normal…
Karlo A. López
  • 2,548
  • 3
  • 29
  • 56
0
votes
0 answers

uisearchdisplaycontroller when search text is being typed in pushes navigationBar

I am using iOS7 on iPad project. In my controllers main view I have 2 subviews. In one of the subviews I placed a tableview and above it a search bar and a button. When I click on the search bar to enter text it grows by about 20 px pushing…
Hassan Hussein
  • 157
  • 1
  • 11
0
votes
1 answer

How can I edit a record selected in a UITableView when a search predicate is being applied

I have a Core Data table and display the record labels in a UITableView in the MasterView of a SplitView. In the DetailsView I display details of the selected item. I want to be able to filter the MasterView using a search field - and thanks to…
Duncan Groenewald
  • 8,496
  • 6
  • 41
  • 76
0
votes
1 answer

searchResultsTableView doesn't equal tableview?

I have UIview contains tableview with search display controller after searching it display the same table my expectation I have a problem with : TableView numberOfRowsInSection# so I debugged it. it display search view but it doesn't fire the if…
0
votes
1 answer

Can't identify if tableView parameter is seachResultsTableView

I'm developing an iOS 6 application. I want to add a search functionallity to a UITableView following this Table Search example from Apple. But, my implementation doesn't work. On - (UITableViewCell *)tableView:(UITableView *)tableView…
VansFannel
  • 45,055
  • 107
  • 359
  • 626