如何在iPhone中的sqlite数据库中保存用户名和密码
我正在创建一个使用 SQLite 的 iPhone 应用程序。只有注册用户才能进入我的应用程序。首先,将向用户显示带有进度条的启动屏幕,以检查 SQLite 数据库中的所有数据。如果用户未登录,则首先必须登录才能进入应用程序。如果他已经登录,他的凭据将已保存在数据库中并从那里访问,并且他可以进入应用程序。但我不知道如何在 SQLite 数据库中保存用户名和密码。请任何人都可以帮助我解决这个问题,或者提供包含 SQLite 数据库中的用户名/密码存储的任何链接。
谢谢
I am creating an iPhone application which makes use of SQLite. Only registered users are allowed to enter into my application. First a splash screen with a progress bar will be shown to the user that will check all the data from the SQLite database. If the user is not logged in, first he has to log in so that he can enter into the application. If he is already logged in, his credentials will be already saved in the database and accessed from there, and he can enter into the application. But I don't know how to save username and password in SQLite database. Please can anybody help me in solving this problem, or give any link that contains username/password storage in SQLite database.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要存储用户名/密码,通常使用钥匙串。
看一下这个,并将其与 SQLite 数据库分开。
http://log.scifihifi.com/post/55837387/simple-iphone -钥匙串代码
To store usernames/passwords, you generally use the keychain.
Take a look at this, and separate it from your SQLite database.
http://log.scifihifi.com/post/55837387/simple-iphone-keychain-code