Dismiss modal view form sheet controller on outside tap(关闭外部水龙头上的模态视图表单控制器)
问题描述
我将模态视图控制器呈现为表单,并在单击取消按钮(它是条形按钮项)时将其关闭.当我在该视图之外点击时,我需要关闭它.请帮我参考.注意:我的模态视图控制器带有一个导航控制器.
I am presenting a modal view controller as a form sheet and dismissing it when the cancel button, which is a bar button item, is clicked. I need to dismiss it when I tap on outside of that view. Please help me with a reference. Note: my modal view controller is presented with a navigation controller.
@cli_hlt,@Bill Brasky 感谢您的回答.当点击发生在作为表单的模式视图之外时,我需要关闭它.我在下面粘贴我的代码.
@cli_hlt, @Bill Brasky thanks for your answer. I need to dismiss it when tap occurs outside of the modal view which is a form sheet. I am pasting my code below.
推荐答案
好的.所以我担心使用 presentModalViewController: 方法不太可能.模态"视图/窗口/消息框/等的整个想法.pp. 是用户不能做任何事情,除了处理任何视图/窗口/消息框/等.pp.希望他/她这样做.
Ah ok. So I'm afraid thats not quite possible using the presentModalViewController: method. The whole idea of a "modal" view/window/message box/etc. pp. is that the user cannot do anything else than processing whatever the view/window/message box/etc. pp. wants him/her to do.
您想要做的不是呈现模态视图控制器,而是以常规方式加载并显示您的表单视图控制器.请注意,在您的主控制器中,表单只是显示,例如使用 BOOL 变量,然后在那里处理可能发生的任何水龙头.如果您的表单正在显示,请将其关闭.
What you want to do instead is not present a modal view controller, but rather load and show your form view controller the regular way. Note in your master controller that the form is just showing e.g. with a BOOL variable and then handle there any taps that might occur. If your form is showing, dismiss it.
这篇关于关闭外部水龙头上的模态视图表单控制器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!