作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想制作一个监听器,只要它向用户显示它就会抓取 UIAlertView。
我首先设置了这个观察者。
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(windowDidBecomeVisible:)
name:UIWindowDidBecomeVisibleNotification
object:nil];
- (void)windowDidBecomeVisible:(NSNotification *)notification
{
UIWindow *window = [notification object];
}
最佳答案
人们在 iOS 6 中通常会做这种事情。
Apple 故意在 iOS 7 上让它变得不可能。你不能再这样做了。唯一的选择是私有(private) API,使用这些 API 会导致您的应用被商店拒绝。
如果您需要这种级别的控制,您必须停止使用 UIAlertView。
关于ios - 如何从 iOS7 中的 UIWindow 对象中获取 UIAlertView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23038741/
我是一名优秀的程序员,十分优秀!