Most voted "uisearchbar" questions
5 questions
Sort by count of
-
0
votes1
answer63
viewsHow to use Uisearchbar with data from Core Data?
I’m trying to filter the name of the cells in a table, loaded with data from Core Data, but I’m having a crash. I am using the following code to filter the cell title: -(void)searchBar:(UISearchBar…
-
0
votes1
answer148
viewsHow to control the lines between the main Uitableview and the Uitableview of the Uisearchbar?
I am implementing a table with search field, and I am using UISearchBar. I have two variables in the app: a NSMutableArray for the original data, and other NSMutableArray for the filtered data. When…
-
0
votes1
answer289
viewsHow to collect keyboard when cancel search button is clicked?
How to collect the keyboard when the cancel button is clicked on a Uisearchbar? I tried some methods and even the delegate’s methods, but it didn’t work. I’ll put up an image to be more precise: I…
-
0
votes1
answer37
viewsSwift - Navigationbar problem with Searchcontroller
I’m having a problem with the NavigationBar when used together with the SearchController. If the NavigationBar translucent property is set to false NavigationBar exits the screen when the…
-
0
votes1
answer76
viewsHow to use the Search Bar with the person class - Swift 3
Good morning. I have the class person class pessoa { var nome : String = “”; var idade : Int = 0; var foto : UIImage!; } extension pessoa { class func Gerar_Registros(pQtd : Int) ->…