Q:Controller present 2 second ,如何让它看起来像只有一个过渡?
Q:Controller present 2 second , how to make it looks like only one transition?
我有一个要求,Controller1
呈现给 -> Controller2
-> 呈现给 Controller3
,如何让它看起来像 Controller1
呈现给 -> Controller3
?
你知道要求是当我启动我的 app
时,它会首先出现在 LaunchController
然后 LoginController
,最后出现在 MainController
,但是当我第二次启动我的应用程序,它看起来像从 LaunchController
现在到 MainController
,因为我在我的 sandbox
中保存了 username
和 password
。
如何实现功能?
第二次可以直接将应用的rootviewcontrollerwindow设置为MainController;当您有用户名和密码时。像这样:
if(username && password)
[self.window setRootViewController:[[MainController alloc] initWithNibName:@"MainController" bundle:nil]];
你可以在里面做这个
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
我有一个要求,Controller1
呈现给 -> Controller2
-> 呈现给 Controller3
,如何让它看起来像 Controller1
呈现给 -> Controller3
?
你知道要求是当我启动我的 app
时,它会首先出现在 LaunchController
然后 LoginController
,最后出现在 MainController
,但是当我第二次启动我的应用程序,它看起来像从 LaunchController
现在到 MainController
,因为我在我的 sandbox
中保存了 username
和 password
。
如何实现功能?
第二次可以直接将应用的rootviewcontrollerwindow设置为MainController;当您有用户名和密码时。像这样:
if(username && password)
[self.window setRootViewController:[[MainController alloc] initWithNibName:@"MainController" bundle:nil]];
你可以在里面做这个
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions