Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我们目前使用 sqlite fromUIWebView来存储用户偏好和详细信息。现在我们正在本机 Objective-C 代码中移动此功能,并希望在更新应用程序时保留这些默认值。
UIWebView
我正在考虑从 Objective-C 代码访问 .sqlite 文件并将这些首选项传输到NSUserDefaults. 我在哪里可以找到由创建的 .sqlite 文件UIWebView,默认位置是什么?
NSUserDefaults
如果你在模拟器上,数据库文件在这里:
/Users/<your-user>/Library/Application\ Support/iPhone\ Simulator/User/Applications/<your-app-id>/Library/WebKit/Databases/file__0/<database-name>
在设备上,尝试:
/var/mobile/Applications/<your-app-id>/Library/WebKit/Databases/file__0/<database-name>