gpt4 book ai didi

ios - 隐藏 PayPal MPL 的 UiAlert

转载 作者:太空宇宙 更新时间:2023-11-03 16:30:40 25 4
gpt4 key购买 nike

我正在使用 PayPal MPL iOS 库。每当我按下取消按钮时,都会显示一条警告消息。如何防止 UiAlert 出现? paypal alert

最佳答案

似乎 Paypal 库本身正在设置警报 View 。因此,除非 paypal 库中有禁用该功能的内容,否则您可能无法直接禁用它。可能有一些解决方法,以下是我的想法:

通过 NSNotification 中心显示新的 UIWindow 时收听通知。通知列在文档底部。

https://developer.apple.com/library/ios/documentation/uikit/reference/UIWindow_Class/UIWindowClassReference/UIWindowClassReference.html

这是另一篇关于收听通知的文章。

Is there a notification on iOS if a UIAlertView is shown?

我的想法是,也许您可​​以在显示警报 View 时捕捉到您可以通过在 AppDelegates 窗口对象上调用 makeKeyAndVisible 来撤消它

[[UIApplication sharedApplication].delegate.window makeKeyAndVisible];

另一个想法对我来说似乎完全是 hack,所以我不会提倡或证明使用方法调配。如果您调整了 UIAlertView 的 [show] 函数,那么您可以注入(inject)一个简单的 if 语句来决定是否调用真正的 show 方法,从而有效地决定是否真正显示警报。走这条路可能会产生无法预料的后果。如果您不熟悉 NSHipster 的技术,请参阅文章 http://nshipster.com/method-swizzling/ .在走这条路之前,我会考虑禁用警报的必要性。

关于ios - 隐藏 PayPal MPL 的 UiAlert,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24420994/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com