我有一个以导航控制器开头的应用程序。该导航控制器可以打开模态视图控制器:
- (void)openModalController:(id)sender
{
[self performSegueWithIdentifier:@"SegueIdentifier"];
}
但是当用户使用url方案打开应用程序时,我想在打开模态控制器的情况下显示应用程序。所以我添加了一些方法并尝试了:
// Controller
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated]; // animated == NO in initial loading
if (_shouldOpenModalController) {
[self openModalController:nil];
}
}
- (void)setShouldOpenModalController:(BOOL)flag
{
_shouldOpenModalController = flag;
}
// AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
if (launchOptions) {
UINavigationController *nc = (UINavigationController *)self.window.rootViewController;
MyViewController *c = (MyViewController *)[ns topViewController];
[c setShouldOpenModalController];
}
}
但是这里有一个问题:openModalController:
执行带有我在故事板中设置的过渡动画的segue。如何在没有动画的情况下完成?这项任务还有另一种方法吗?
答案 0 :(得分:40)
在Storyboard中复制您的segue,并为第二个提供不同的ID。
然后,您可以更改新版本中的转换。
答案 1 :(得分:27)
答案 2 :(得分:8)
我正在使用此代码段在viewDidLoad
中请求授权:
[UIView setAnimationsEnabled:NO];
self.view.hidden = YES;
[self performSegueWithIdentifier:@"segue_auth" sender:self];
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.4 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
[UIView setAnimationsEnabled:YES];
self.view.hidden = NO;
});
获得授权后,可以根据需要对后退过渡进行动画处理。
答案 3 :(得分:6)
我们可以采取的另一种方式
YourViewController *aYourViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"aYourViewControllerIdentifier"];
[self.navigationController pushViewController:aYourViewController animated:NO];
并将@"aYourViewControllerIdentifier"
添加到故事板中的视图控制器。