有没有办法检查模态视图是否存在?我只想在模式视图存在时运行一个方法.另外,如果我有多个模态视图,有没有办法检查某个模态视图是否存在.
Is there a way to check if a modal view is present? I'd like to run a method only if a modal view is present. Also, if I have multiple modal views, is there a way to check if a certain modal view is present.
我使用以下代码来呈现和关闭模式视图:
I use the following code to present and dismiss modal views:
[self presentModalViewController:myModalView animated:YES];
[self dismissModalViewControllerAnimated:YES];
提前谢谢你!
干杯,埃文
PS.我的模态视图有一个视图控制器,但我想检查模态视图是否存在于异步运行的单独类中.
PS. My modal view has a view controller, but I'd like to check if the modal view is present from a separate class that is running asynchronously.
您是否从父视图控制器检查模态视图控制器的存在?如果是这样,您可以检查该视图控制器的 modalViewController 属性:
Are you checking the presence of a modal view controller from the parent view controller? If so, you can just check that view controller's modalViewController property:
BOOL modalPresent = (self.modalViewController);
如果你想检查一个特定的模态视图控制器,你可以像这样获取模态视图控制器的类名:
If you want to check for a particular modal view controller, you can get the modal view controller's class name like this:
NSString *modalClassName = NSStringFromClass([self.modalViewController class]);
这篇关于iOS - 如何检查模式视图是否存在的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!