UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

Why am I getting this error when trying to add a view to a StackView?

Forums > iOS

Thread 1: Fatal error: Unexpectedly found nil while implicitly unwrapping an Optional value

func setUpProviderLoginView() {

         let button = ASAuthorizationAppleIDButton(authorizationButtonType: .signUp, authorizationButtonStyle: .black)

         button.addTarget(self, action: #selector(handleAuthorizationAppleIDButtonPress), for: .touchUpInside) 

         buttonSignUpStackView.addArrangedSubview(button)  // Getting Error Here

}

3      

Are you sure that your buttonSignUpStackView is not nil?

Beyond that suggestion, we would need to see more of your code to better diagnose the problem.

3      

So buttonSignUpStack is an outlet from my storyboard and it already contains some views so I wouldn't think that it is nil. Does it have something to do with programmatically adding this button to a stack i created using storyboard?

3      

Like I said, we'd need to see more of your code to properly diagnose the issue. Can you post the code for your ViewController?

3      

Hacking with Swift is sponsored by RevenueCat.

SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure your entire paywall view without any code changes or app updates.

Learn more here

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.