Skip to content

Instantly share code, notes, and snippets.

@rtking1993
Last active February 8, 2019 11:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rtking1993/74c844fa095266f764029ab78f91af20 to your computer and use it in GitHub Desktop.
Save rtking1993/74c844fa095266f764029ab78f91af20 to your computer and use it in GitHub Desktop.
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