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
'searchTextField' is only available in iOS 13.0 or newer error in AddArtistsViewController.configureSearchController()
searchBar.searchTextField.textColor = ColorPreference.mainColor should only run for devices running iOS 13 +
searchBar.searchTextField.textColor = ColorPreference.mainColor is run on devices running lower than iOS 13 as well as iOS 13 +
Add 'if #available' version check
<- Delete if none ->
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
'searchTextField' is only available in iOS 13.0 or newer error in AddArtistsViewController.configureSearchController()
Expected Behavior
searchBar.searchTextField.textColor = ColorPreference.mainColor should only run for devices running iOS 13 +
Actual Behavior
searchBar.searchTextField.textColor = ColorPreference.mainColor is run on devices running lower than iOS 13 as well as iOS 13 +
Steps to Reproduce the Problem
Possible solution
Add 'if #available' version check
Specifications
<- Delete if none ->
Screenshots
The text was updated successfully, but these errors were encountered: