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.
我正在使用故事板构建一个 iOS 应用程序。我正在将登录配置文件信息发送到服务器并从服务器作为用户 ID 获取响应我想将此 ID 保存在我的本地文件中并在我的项目中以不同的类使用。
我无法做到这一点,有人可以帮助我如何做到这一点。
登录数据不应存储在文件或用户默认值中。我建议将其存储在 NSKeychain 中。
此外,如果您需要在当前项目范围内保留它以供本地参考,请创建一个管理这些属性的类并使用依赖注入来传递包含这些属性的类。
查看 nsuserdefault 文档了解何时使用/不使用它们的情况。
https://developer.apple.com/library/ios/documentation/cocoa/reference/Foundation/Classes/NSUserDefaults_Class/index.html