You can create an AccountManager in IOS and Swift 2

1

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?

    
asked by Andres Guillermo Castellanos A 02.06.2016 в 01:58
source

1 answer

0

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!

    
answered by 10.06.2016 / 10:06
source