You will need to be familiar with the basics of Swift and able to start a Playground (or similar)
and be able to create a UITableView
programatically
Difficulty: Beginner | Easy | Normal | Challenging This article has been developed using Xcode 13.0, and Swift 5.3
SearchViewController: A view controller that manages the display of search results based on interactions with a search bar.
Oh, if you'd like the code for this it is https://github.com/stevencurtis/SwiftCoding/tree/master/BasicSearchController
The idea is that you can type to search in this tableview: Images/finished.png
and if you type in letters (not any number) the table will display letters, if not (i.e. if you type numbers) this will display numbers.
This involved the use of a closure for the UITableView
, which brings us onto...
You know what, making a project with a SearchViewController
shouldn't be difficult at all. The problem is that description in terminology, it makes it sound much more difficult than it is.
Then I see I haven't created a tutorial on this previously. So I think that is time to put that right.
Now if you want to see a video about how to set up a UITableView
please look at the following video: https://youtu.be/VBJODUzYKqk
I've created a rather nice function to set up the SearchViewController
func setupSearchController() {
searchController.searchBar.translatesAutoresizingMaskIntoConstraints = false
searchController.searchBar.placeholder = "Search for your data"
searchController.obscuresBackgroundDuringPresentation = false
searchController.searchBar.delegate = self
searchController.searchBar.keyboardType = .default
let placeholderAppearance = UILabel.appearance(whenContainedInInstancesOf: [UISearchBar.self])
placeholderAppearance.font = .systemFont(ofSize: 16)
navigationController?.navigationBar.barTintColor = .systemBackground
navigationItem.searchController = searchController
navigationItem.hidesSearchBarWhenScrolling = true
}
This isn't enough for us though. Much like a UITableView
has delegates, here we need to conform to UISearchBarDelegate
.
I've placed this conformance into a delegate
func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {
viewModel.search(searchText)
}
which then links to the viewModel
. This means when the user types anything into the search controller.
We then link to the ViewModel so we can add it into our code here:
class ViewModel {
var data: [String] = ["1", "2", "3"]
var dataChanged: (() -> ())?
func search(_ text: String) {
if CharacterSet.decimalDigits.isSuperset(of: CharacterSet(charactersIn: text)) {
data = ["1", "2", "3"]
dataChanged?()
} else {
data = ["a", "b", "c"]
dataChanged?()
}
}
}
It should be relatively trivial to get a SearchViewController
into n app programatically. So in order to make that easy for us, I've created this rather lovely Medium article.
I hope that it's helped you. Thank you for reading.
Subscribing to Medium using this link shares some revenue with me.
If you’ve any questions, comments or suggestions please hit me up on Twitter