Example of basic authentication situation
// MARK: LoginViewController | |
class LoginViewController: UIViewController { | |
func login(with username: String, | |
password: String) { | |
let authenticationSession = AuthenticationSession() | |
authenticationSession.performLogin(with: username, | |
password: password) | |
} | |
} | |
// MARK: AuthenticationSession | |
class AuthenticationSession { | |
func performLogin(with username: String, | |
password: String) { | |
let userIdentifier = Service.login(username, password) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment