Show and hide scope bar based on editing state
This commit is contained in:
parent
fe2e0155da
commit
c9858a0457
@ -46,7 +46,6 @@ class MasterTimelineViewController: UITableViewController, UndoableCommandRunner
|
|||||||
searchController.obscuresBackgroundDuringPresentation = false
|
searchController.obscuresBackgroundDuringPresentation = false
|
||||||
searchController.searchBar.delegate = self
|
searchController.searchBar.delegate = self
|
||||||
searchController.searchBar.placeholder = NSLocalizedString("Search Articles", comment: "Search Articles")
|
searchController.searchBar.placeholder = NSLocalizedString("Search Articles", comment: "Search Articles")
|
||||||
searchController.searchBar.showsScopeBar = true
|
|
||||||
searchController.searchBar.scopeButtonTitles = [
|
searchController.searchBar.scopeButtonTitles = [
|
||||||
NSLocalizedString("Here", comment: "Here"),
|
NSLocalizedString("Here", comment: "Here"),
|
||||||
NSLocalizedString("All Articles", comment: "All Articles")
|
NSLocalizedString("All Articles", comment: "All Articles")
|
||||||
@ -427,6 +426,16 @@ extension MasterTimelineViewController: UISearchBarDelegate {
|
|||||||
coordinator.searchArticles(searchBar.text!, searchScope)
|
coordinator.searchArticles(searchBar.text!, searchScope)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func searchBarShouldBeginEditing(_ searchBar: UISearchBar) -> Bool {
|
||||||
|
searchBar.showsScopeBar = true
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
func searchBarShouldEndEditing(_ searchBar: UISearchBar) -> Bool {
|
||||||
|
searchBar.showsScopeBar = false
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// MARK: Private
|
// MARK: Private
|
||||||
|
Loading…
x
Reference in New Issue
Block a user