uisearchcontroller Questions
5
Solved
This must be trivial, but I can't find how you're supposed to dismiss a UISearchController programmatically?
Note that it's the new UISearchController (introduced in 2014 with iOS 8), not the UISe...
Gallfly asked 10/2, 2015 at 17:48
4
I am working on adding a search bar in to an existing app.
I have a table that is populated with data downloaded from a server, and I am using the new UISearchController.
I have the search bar al...
Disaffection asked 24/8, 2015 at 11:55
3
Solved
I'm presenting a UISearchController from my controller embedded in a navigation controller. The default animation occurs, where the search box drops down from the top on the navigation bar.
This...
Tiernan asked 17/1, 2018 at 15:13
3
I have a navigationBar with largeTitle and searchcontroller and my tableView has a refreshcontrol.
When I pull to refresh the activityIndicator of refreshcontrol disappear but de refresh process ...
Glen asked 17/10, 2017 at 15:23
3
Solved
I'm trying to add a UISearchController to a UIViewController that contains a UITableView (and an MKMapView too, but hopefully that's not the problem). I followed Ray Wenderlich's tutorial but I can...
Petr asked 24/11, 2017 at 9:9
6
First time this part of the application loads the search controller's search bar's cursor shows, as desired.
(The Problem) When search is dismissed and then (later) re-laoded, no cursor:
This...
Hyperacidity asked 9/11, 2015 at 20:40
2
Solved
I want to implement UISearchController, going step by step using this tutorial:
Search for places using MKLocalSearchRequest and display results with UISearchController
And in this section...
Se...
Facelifting asked 21/11, 2017 at 12:13
4
Xcode 9 beta 6 iOS 11
I have a storyboard for a viewController, the background ImageView, tableView and the searchFooter view are the subViews of the view.The structure is as follows:
In the Ap...
Roborant asked 1/9, 2017 at 4:50
4
Solved
I'm looking to create similar functionality to Apple's maps application in Swift. Is there anyway to integrate a UISearchController in to a regular view (i.e.: not a UITableView). Dropping one in t...
Paleoecology asked 17/10, 2014 at 3:51
1
Solved
I'm working with UISearchController in Xamarin.Ios and everything works fine but when I start typing, the SearchhResultUpdating method is not override is not firing. It works sometimes and doesn't ...
Indebtedness asked 16/10, 2017 at 11:47
1
I encountered a lot of issues with iOS 11 and displaying UISearchController by presenting it over navigation bar (as described here, example from Apple tutorials)
@IBAction func searchAction(sende...
Sambo asked 13/10, 2017 at 12:34
0
Has anyone successfully retained a UISearchBar in a tableHeaderView of a UITableView in ios11? Problems usually arise with iPhone X in landscape:
Apple recommends using the new searchController ...
Pinkie asked 13/10, 2017 at 19:51
1
When setting status bar to hidden
override var prefersStatusBarHidden: Bool {
return true
}
and initialize a plain searchController using
let searchController = UISearchController(searchResultsCo...
Fundamentalism asked 21/9, 2017 at 23:11
1
having the same issue as already posted (non of the answers works..), my table is a fixed width, and in iOS 10.x the searchbar (which is in the tableviewheader), stays the same size when typing. Ho...
Marrufo asked 14/9, 2017 at 14:27
2
I am using UISearchController as part of navigation bar using the new APIs introduced in iOS 11. I am using it in the following manner in my ViewController's viewDidLoad
- (void)viewDidLoad {
[s...
Tonsillectomy asked 15/9, 2017 at 14:10
1
Solved
UISearchContainerViewController exists both on tvOS and on iOS.
Apple has sample code showing how to use it in tvOS: they configure a UISearchController, hand it to a UISearchContainerViewControll...
Dympha asked 6/9, 2017 at 13:38
3
I'm trying to implement a simple search bar using Apple's latest UISearchController. However I can't seem to get it to work correctly if I use the search bar's scope bar to get a filter choice.
T...
Blowgun asked 15/7, 2015 at 7:52
3
Solved
I've got a UISearchBar in my UINavigationItem's titleView associated with a UISearchController. When I navigate back, it appears to flash. Anyone seen this before?
vid of flash
@interface HNTileS...
Sankaran asked 10/7, 2015 at 17:19
3
I am using UISearchController and the UISearchBar also has a scope bar. The search bar is added as a subview to a UIView which is above the UItableView. I have done it this way since I want the sea...
Gemma asked 25/3, 2015 at 19:16
1
I'm trying to figure out how to use UISearchController when you want to display the results in a separate searchResultsController - every single guide, video and tutorial I've found have all used t...
Archaic asked 12/7, 2017 at 14:19
2
I have tried to set the searchBar as a tableHeaderView inside of the viewDidLoad:
override func viewDidLoad() {
super.viewDidLoad()
// SearchController initializiation
self.searchController ...
Swollen asked 7/4, 2017 at 2:38
10
I've spent quite a bit of time searching online and talking to other developers about this issue to no avail. The exact issue is described in this SO post (Focus on the UISearchBar but the keyboard...
Mistiemistime asked 29/5, 2015 at 5:52
2
Solved
I am using UISearchController in iOS 8 with the following intializaiton in viewDidLoad of a view controller embedded in a tab controller
_searchController = [[UISearchController alloc] initWithSe...
Glennaglennie asked 23/2, 2015 at 14:24
1
Solved
I use a Search Bar to filter my Table View. I display the search results in the same view controller that displays the searchable content. It works fine. Except one thing - 3d Peek and Pop is not w...
Zora asked 12/3, 2017 at 22:7
6
Solved
The Problem
I am trying to use UISearchController to search for a destination on a map view. I want the UISearchBar to appear in the navigation bar, but I can't seem to make it do so without it sho...
Joli asked 8/2, 2015 at 16:19
© 2022 - 2024 — McMap. All rights reserved.