So far when after completing the username and password fields in my SignInViewController
.
This is what the code looks like:
Code from SignInViewControllerExtension class
func startPasswordAuthentication() -> AWSCognitoIdentityPasswordAuthentication {
return self as! AWSCognitoIdentityPasswordAuthentication
}
My SignInViewControllerExtensions
throws a Thread 1: Signal SIGABRT error with the following message in the debug area:
Could not cast value of type 'Elixr.SignInViewController' (0x1001460a8) to 'AWSCognitoIdentityPasswordAuthentication' (0x100134468).
You're probably trying to assign
Elixr.SignInViewController
asAWSCognitoIdentityPasswordAuthentication
somewhere. But I can't say more without looking at the actual code.But I'm guessing it's going to look something like this...
The
as!
above is trying to force cast something that is notAWSCognito...
so the code is going to crash.