Skip to content

Instantly share code, notes, and snippets.

@meyusufdemirci
Created November 2, 2020 19:48
Show Gist options
  • Select an option

  • Save meyusufdemirci/f19896952538c9d08de232cdb81aeb9b to your computer and use it in GitHub Desktop.

Select an option

Save meyusufdemirci/f19896952538c9d08de232cdb81aeb9b to your computer and use it in GitHub Desktop.
if let userId: String = KeychainManager.shared["userId"], !userId.isEmpty {
// found an userId, which means the user already has opened the app before
// next step: open the home screen or whatever you want
} else {
// the user launches the app for the first time
let newUserId = uniqueId(length: 10)
KeychainManager.shared["userId"] = newUserId
// next step: open the home screen or whatever you want
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment