Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you get the text the user entered into the search Bar?

I want to be able to get the text the user entered into a search bar, and compare the words in an array. But i'm not sure how to get the text from the search bar, I know in java its just getText.

like image 801
gikygik Avatar asked Dec 03 '22 02:12

gikygik


1 Answers

Assuming you named the UISearchBar just searchBar, you can retrieve the text with

searchBar.text
like image 192
PengOne Avatar answered Dec 18 '22 14:12

PengOne