如何关闭使用presentModalViewController打开的视图控制器:

发布于 2024-10-19 21:49:45 字数 74 浏览 6 评论 0原文

我使用 presentModalViewController: 呈现了一个视图控制器,现在如何关闭/关闭它?

I presented a view controller using presentModalViewController:, now how to close/dismiss it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

以可爱出名 2024-10-26 21:49:45

对于 iOS6,请使用此代码

[self dismissViewControllerAnimated:YES completion:Nil];

而不是

[self dismissModalViewControllerAnimated:YES];

这可能会对您有所帮助。

For iOS6 use this code

[self dismissViewControllerAnimated:YES completion:Nil];

instead of

[self dismissModalViewControllerAnimated:YES];

This may help you.

尸血腥色 2024-10-26 21:49:45

从模态呈现的控制器:

[self dismissModalViewControllerAnimated:YES]

From the controller presented modally:

[self dismissModalViewControllerAnimated:YES]
痴者 2024-10-26 21:49:45

你有两种选择,都涉及使用dismissModalViewController。

首选方法是使用委托并告诉负责呈现视图的视图控制器将其关闭。另一种方法是让提出的视图自行驳回(实际上要求父级驳回它。)

You have two choices, both involves using dismissModalViewController.

The preferred way is to use delegation and tell the view controller who was responsible for presenting the view to dismiss it. The other way is to have the view who was presented to dismiss itself (which actually asks the parent to dismiss it.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文