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 - 如何检查模式视图是否存在
基础教程推荐
- 如何比较两个 NSDate:哪个是最近的? 2022-01-01
- navigationItem.backBarButtonItem 不工作?为什么上一个菜单仍然显示为按钮? 2022-01-01
- Xcode UIView.init(frame:) 只能在主线程中使用 2022-01-01
- 如何将图像从一项活动发送到另一项活动? 2022-01-01
- 为什么姜饼模拟器方向卡在应用程序中? 2022-01-01
- Play 商店的设备兼容性问题 2022-01-01
- SwiftUI-ScrollViewReader的ScrollTo不滚动 2022-01-01
- UIImage 在开始时不适合 UIScrollView 2022-01-01
- iOS - UINavigationController 添加多个正确的项目? 2022-01-01
- Android Volley - 如何动画图像加载? 2022-01-01
