iOS - How to check if a modal view is present(iOS - 如何检查模式视图是否存在)
问题描述
有没有办法检查模态视图是否存在?我只想在模式视图存在时运行一个方法.另外,如果我有多个模态视图,有没有办法检查某个模态视图是否存在.
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 - 如何检查模式视图是否存在的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:iOS - 如何检查模式视图是否存在
基础教程推荐
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
