In android you can create application accounts in the phone to save session data when a user is authenticated or logged into our example app: AccountManager.
Can this be done on iOS? Or is there something similar?
In android you can create application accounts in the phone to save session data when a user is authenticated or logged into our example app: AccountManager.
Can this be done on iOS? Or is there something similar?
I think that with the Keychain Services
of the framework Security
you could implement something similar to the AccountManager
of Android. If you are a Mac OSX user, it is a concept very similar to the% desktop% co: save secured passwords and accounts with a master password. In the case of the mobile (if it has the capacity) you can even make these passwords protected by fingerprints.
Here you can find the official documentation of Apple on this: link
Likewise, Ray Wenderlich has a pretty well explained tutorial with examples in Swift. It's this link: link
I hope I helped you. Greetings!