Created
April 20, 2015 10:12
-
-
Save BasThomas/75361ef593485069e28b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
Filters the list of clients according to the query. | |
:param: searchText The query. | |
*/ | |
func filterContentForSearchText(searchText: String) | |
{ | |
self.filteredClients = self.clients.filter( | |
{ | |
(client: Client) -> Bool in | |
return client.name.lowercaseString.hasPrefix(searchText.lowercaseString) | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment