Post

Replies

Boosts

Views

Activity

Reply to Sign In With Apple and Older Devices
You can create a stackView and link with your ViewController and create appleSignIn button programmatically Then you can check iOS version and add it to your stackView         if #available(iOS 13.0, *) { /*	iOS13 available add button! */ self.stackView.addArrangedSubview(appleSignInButton) } else { /* continue */ } This is the best approach to handle the button with lower version of iOS!
Jun ’20