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中完成它?
您可以像这样重新分配根视图控制器:
self.window.rootViewController = navigationController;
为什么不将登录屏幕呈现为模态视图控制器?如果用户注销,您将在当前屏幕上显示模态视图控制器。当用户登录时,您关闭显示应用程序真实部分的模式登录视图控制器。