We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@ihomam I am using your code. Thank you.
I show scope bar using searchBarTextDidBeginEditing().
`func searchBarTextDidBeginEditing(_ searchBar: UISearchBar) {
if #available(iOS 11.0, *) { } else { self.searchBar!.showsCancelButton = true self.searchBar!.showsScopeBar = true self.searchBar!.sizeToFit() } self.collectionView?.reloadData() }`
However, scope bar overlaps the collection view's first row.
How do i solve this and is there a simpler way to add search bar with scope bar for iOS 10 when using Xcode 9.3 and Swift 4?
Adding it in UItableView is so simple!!
Appreciate if you could help.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@ihomam I am using your code. Thank you.
I show scope bar using searchBarTextDidBeginEditing().
`func searchBarTextDidBeginEditing(_ searchBar: UISearchBar) {
However, scope bar overlaps the collection view's first row.
How do i solve this and is there a simpler way to add search bar with scope bar for iOS 10 when using Xcode 9.3 and Swift 4?
Adding it in UItableView is so simple!!
Appreciate if you could help.
The text was updated successfully, but these errors were encountered: