Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
37 views

I have an app which has a search bar that appears in the navigation bar and my set up is a hybrid of SwiftUI and UIKit. I don't think this has bearing on the question at hand but here is my set up: I ...
Shawn Frank's user avatar
  • 5,303
0 votes
0 answers
103 views

I have a UITableViewController with a UINavigationBar with the property : navigationBar.prefersLargeTitles = true navigationItem.largeTitleDisplayMode = .automatic I add in the UITableViewController ...
David Goncalves's user avatar
2 votes
0 answers
27 views

There's a page I'm designing that uses a search bar that's intended to work as a UISearchController. The search bar is positioned in the center of a view. When a user taps the search bar, I want the ...
Vandal's user avatar
  • 790
0 votes
1 answer
69 views

I have been search for over two days now and simply could't find an answer. Hope anyone out there can help? In short, the project I am working on holds a searchbar in its navigationbar. This ...
Stephanovits's user avatar
0 votes
1 answer
98 views

I'm currently working with UISearchController and I've found out some awkward behavior of UISearchController. Previously I didn't know there was the showsSearchResultsController property which helps ...
NewBie's user avatar
  • 7
0 votes
1 answer
90 views

Implementation for search functionality using custom search view controller : final class MoviesViewController: UITableViewController, UISearchResultsUpdating { var movies = [...
Himan Dhawan's user avatar
1 vote
0 answers
498 views

I am working on a tvOS application with a UISearchController. I have a problem when the grid keyboard is selected in the settings (Settings->General->Keyboard Layout). Expected behavior When the ...
Woody's user avatar
  • 160
6 votes
1 answer
1k views

On iPad with iOS 16 searchController displaying on the right side. Like this: How can I return the searchController's "default" view? Like this:
Kren_DEL's user avatar
  • 105
0 votes
1 answer
193 views

I have a modally presented SearchviewController that contains a UISearchController. When swiping down it gets deallocated, but only if the searchControllers searchBar is not in editing mode. Only if I ...
alju2404's user avatar
2 votes
1 answer
1k views

I'm using system searchBar via UISearchController in my Swift app. What is the correct way to set left and right padding to searchTextField? I need paddings for searchTextField itself, not just for ...
Alexey Gorbel's user avatar
-1 votes
1 answer
267 views

There is a phenomenon that jumps when you click the search bar. The view is below. https://i.sstatic.net/jFkgS.gif my code. lazy var searchController: UISearchController = { let searchController = ...
Ari Lee's user avatar
  • 11
0 votes
1 answer
70 views

I have a SearchBar on my tableView. It is correctly working when typing to search through the table view. However, when the cancel button is pressed, the tableView is not reloading the data. -(void)...
user717452's user avatar
1 vote
1 answer
173 views

I’m trying to get the tableView to move up when the search bar does. Take a look at the problem: I think I see what the issue is here, but I can't think of a solution. In SearchResultsUpdating I have ...
jmsapps's user avatar
  • 498
1 vote
1 answer
201 views

For some reason, when I set UITableViewController navigationItem.searchController with a UISearchController, it doesn't take it. Here is my code: let searchController = UISearchController(...
daniel's user avatar
  • 1,036
0 votes
0 answers
113 views

In Swift, I'm using SearchController and TableView with search API below. https://developers.giphy.com/docs/api/endpoint#search api.giphy.com/v1/gifs/search When I input to SearchController field, ...
panther222128's user avatar
-1 votes
1 answer
100 views

I'm trying to present a search controller in response to a button, by setting its isActive property, but it doesn't appear. lazy var searchController: UISeachController = { let searchController = ...
alekop's user avatar
  • 3,046
0 votes
1 answer
386 views

I am using the new UISearchController with searchbar inside tableview header.Everything works fine in portrait orientation but when I rotate to landscape and uisearchbar start editing its frame is out ...
Waseem05's user avatar
  • 1,274
0 votes
2 answers
284 views

I have a UISearchController configured as searchController for navigation bar. I have following setup. let searchController = UISearchController(searchResultsController: nil) searchController....
Alex's user avatar
  • 518
0 votes
1 answer
29 views

I can show skill(List)(only vName) as rows and CategorySkill show as section in tableview. but the issue is I want to filter only VName when search using searchcontroller? and I don't know what to ...
HM108's user avatar
  • 45
0 votes
2 answers
441 views

I have a UITableView that has a Search Controller for filtering the data using the code below func updateSearchResults(for searchController: UISearchController) { let searchString = ...
THGTechGuy's user avatar
4 votes
0 answers
1k views

I'm currently struggling with UISearchController in Swift. I'd like to keep showing a bookmark button when text is entered into a textField. I need to take the text via a bookmark button (or any other ...
tipotto's user avatar
  • 107
0 votes
1 answer
197 views

I use this code to change my navigation bar appearance which I put it in AppDelegate: UINavigationBar.appearance().barTintColor = UIColor(hex: "E1354A") UINavigationBar.appearance()....
Parcker's user avatar
  • 219
0 votes
0 answers
25 views

I've next model: struct HashTags { var title = "" var tags = [String]() } and I try use UISearchController for seach text in tags array. I impelemented UISearchController in my ...
Parcker's user avatar
  • 219
0 votes
1 answer
463 views

So my goal is to be able to filter out the Algolia hits not only in the console, but in the actual displayed results as well. So I've been stuck with this issue for a month or so now. I am using the ...
dsonawave's user avatar
  • 167
0 votes
1 answer
364 views

I have a UISearchController that when a user enters text, it searches through the objects. However the user can only search for a single keyword, I want them to search through multiple keywords. Model:...
isaacthedev's user avatar

1
2 3 4 5
26