Skip to content
New issue

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

Compatible for iOS 13 - UISegmentControl #41

Open
mario1in opened this issue Sep 26, 2019 · 0 comments
Open

Compatible for iOS 13 - UISegmentControl #41

mario1in opened this issue Sep 26, 2019 · 0 comments

Comments

@mario1in
Copy link

There is now a selectedSegmentTintColor on UISegmentedControl. If you want to change the color of the selected segment, you should use selectedSegmentTintColor on iOS 13. setTintColor will not work.

eg:

 if #available(iOS 13.0, *) {
       segmentControl.selectedSegmentTintColor = UIColor.white
       segmentControl.setTitleTextAttributes([NSAttributedString.Key.foregroundColor: UIColor.black], for: .normal)
 } else {
        tabBar.tintColor = UIColor.white
 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant