78

谁能给我示例代码,我可以使用它首先呈现模态视图控制器,然后将其关闭?这是我一直在尝试的:

NSLog(@"%@", blue.modalViewController);
[blue presentModalViewController:red animated:YES];
NSLog(@"%@", blue.modalViewController);
[blue dismissModalViewControllerAnimated:YES];
NSLog(@"%@", blue.modalViewController);

这段代码在 viewDidLoad 中(“blue”和“red”都是 UIViewController 的子类)。我希望我会显示红色视图,然后立即隐藏它,并带有一些动画。然而,这段代码只显示模态视图,并没有关闭它。任何的想法?第一个日志显示“null”,而另外两个日志显示<RedViewController: 0x3d21bf0>

还有一点是,如果我把这段代码放在applicationDidFinishLaunching中:红色视图根本没有出现,所有日志都得到“null”

4

6 回答 6

110

首先,当您将该代码放入 applicationDidFinishLaunching 时,可能是从 Interface Builder 实例化的控制器尚未链接到您的应用程序(因此“红色”和“蓝色”仍然存在nil)。

但是要回答您最初的问题,您做错的是您调用dismissModalViewControllerAnimated:了错误的控制器!它应该是这样的:

[blue presentModalViewController:red animated:YES];
[red dismissModalViewControllerAnimated:YES];

通常,“红色”控制器应该决定在某个时候解散自己(可能在单击“取消”按钮时)。然后“红色”控制器可以调用该方法self

[self dismissModalViewControllerAnimated:YES];

如果它仍然不起作用,可能与控制器以动画方式呈现的事实有关,因此您可能不允许在呈现控制器后这么快就将其关闭。

于 2009-10-07T13:19:04.407 回答
20

迅速

为 Swift 3 更新

在此处输入图像描述

故事板

创建两个视图控制器,每个控制器上都有一个按钮。对于第二个视图控制器,将类名设置为SecondViewController并将情节提要 ID 设置为secondVC.

代码

ViewController.swift

import UIKit
class ViewController: UIViewController {

    @IBAction func presentButtonTapped(_ sender: UIButton) {
        
        let storyboard = UIStoryboard(name: "Main", bundle: nil)
        let myModalViewController = storyboard.instantiateViewController(withIdentifier: "secondVC")
        myModalViewController.modalPresentationStyle = UIModalPresentationStyle.fullScreen
        myModalViewController.modalTransitionStyle = UIModalTransitionStyle.coverVertical
        self.present(myModalViewController, animated: true, completion: nil)
    }
}

SecondViewController.swift

import UIKit
class SecondViewController: UIViewController {
    
    @IBAction func dismissButtonTapped(_ sender: UIButton) {
        self.dismiss(animated: true, completion: nil)
    }
}

来源:

于 2016-05-17T10:59:12.360 回答
13

我在 xcode 4.52 中厌倦的最简单方法是创建一个附加视图并使用 segue modal 连接它们(控制将按钮从视图一个拖到第二个视图,选择 Modal)。然后将按钮拖入第二个视图或您创建的模态视图。控制并拖动此按钮到头文件并使用动作连接。这将在你的 controller.m 文件中创建一个 IBaction。在代码中找到您的按钮操作类型。

[self dismissViewControllerAnimated:YES completion:nil];
于 2013-01-18T07:04:58.183 回答
9

presentModalViewController:

MainViewController *mainViewController=[[MainViewController alloc]init];
[self.navigationController presentModalViewController:mainViewController animated:YES];

解除模式视图控制器:

[self dismissModalViewControllerAnimated:YES];
于 2012-09-05T12:18:19.770 回答
3

最简单的方法是使用 Storyboard 和 Segue。

只需从 TabBarController 的 FirstViewController(不是 Navigation Controller)创建一个 Segue 到具有登录 UI 的 LoginViewController 并将其命名为“showLogin”。

创建一个返回 BOOL 的方法,以验证用户登录和/或他/她的会话是否有效......最好在 AppDelegate 上。称之为isSessionValid。

在您的 FirstViewController.m 上覆盖方法 viewDidAppear,如下所示:

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];

    if([self isSessionValid]==NO){
        [self performSegueWithIdentifier:@"showLogin" sender:self];
    }
}

然后,如果用户成功登录,只需关闭或弹出 LoginViewController 以显示您的选项卡。

100% 有效!

希望能帮助到你!

于 2012-11-28T21:28:26.987 回答
3

迅速

self.dismissViewControllerAnimated(true, completion: nil)

于 2015-09-08T16:20:37.567 回答