I want to unwrap two optionals in one if statement, but the compiler complaints about an expected expression after operator at the password constant. What could be the reaso
Update for Swift 3:
if let email = emailField?.text, let password = passwordField?.text { }
each variable must now be preceded by a let keyword