Saturday 15 January 2011

database - Best way to store user information for my iOS app -


What kind of database do you suggest? I want to store user email, username, password, and some other random information. I do not have to be fancy. Just a simple database are there any free options?

User information needs to be stored in a keychain to protect < P> Any other information can be stored in one of the following:

  1. User default NSUserDefaults
  2. File on disk (probably a plist )
  3. Database Core Data (technically just a file on disk)

    Depending on what you choose What is the data, how Fie and you need access to what.

    If your data is small and the user is chosen as a type of setting then the user default is understood and the cost is the lowest cost for you

    To use a database, check out.

No comments:

Post a Comment