导航控制器按钮右侧
我想在所有视图的导航栏左侧放置一个“注销”按钮,这将允许用户注销他的身份(我有很多屏幕,我想将 i导航栏右侧的 按钮允许用户注销任何身份)。
我可以使用一种方法(signOut...)来完成此操作,还是应该在每个视图中放置一个方法signOut?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 导航控制器上放置一个退出按钮 导航栏位于您设置导航控制器的类中。您的signOut 方法也可以放置在那里。
You could put a signOut button on the navigation controller's navigation bar in the class in which you set up the navigation controller. Your signOut method could be placed there as well.
我建议您构建一个用户管理类,该类保存所有用户交互和信息,并具有一个方法(例如注销),当应用程序启动时创建此对象并将其传递给控制器,就像会话对象一样。
I Suggest you Build a User Management Class that holds all user interactions and information and have a Method let's say Signout, When the Application Start up create this object and keep passing it to to the Controllers, like a session Object.