gpt4 book ai didi

ios - 使用单例类来跟踪用户信息是否合适?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:04:53 25 4
gpt4 key购买 nike

我正在开发一个需要用户登录的 IOS 应用程序。它有一个主视图 Controller ,用于检查用户是否已经登录。如果没有,它会转到另一个显示登录的 View Controller 迅速的。当用户在那里登录时,主视图 Controller 关闭登录 View 并显示适合登录用户的信息。

该应用程序还将用户凭据存储在设置 plist 中。如果存在该信息,应用程序将尝试使用存储的凭据登录。如果成功,Master View Controller 将加载适合用户的信息。如果没有,它将转到登录 View Controller 。

我最终复制了 Master View 和 Log in View Controller 中的代码来验证用户 ID 和密码。然后,我需要将 prepareforsegue 方法中的用户实例传递给任何后续 View 。

我应该实现一个单例类来跟踪登录用户吗?这很诱人,因为它似乎可以节省很多工作。每次推送新 View Controller 时,将我在登录 View Controller 中使用的用户登录方法委托(delegate)回主视图 Controller 并在 prepareforsegue 中传递用户实例会更好吗?

最佳答案

Should I implement a singleton class to keep track of the logged in user?

你当然可以做到。但是,您也可以创建一个无状态帮助器类,根据需要从后备存储中读取凭据,从而避免创建单例。

I ended up duplicating the code in the Master View and Log in View controllers

无状态助手方法(即其中只有类 (+) 方法的类)将防止代码重复:您最终复制的代码将进入共享助手类。

The application also stores user credentials in a settings plist.

如果未加密的密码是用户凭据的一部分,这不是一个安全的解决方案。你应该使用 keychain services将凭据保存在 protected 存储中。

关于ios - 使用单例类来跟踪用户信息是否合适?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24577645/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com