gpt4 book ai didi

ios - UIAlertView 未在 Monotouch Release 版本中显示

转载 作者:行者123 更新时间:2023-11-29 01:37:53 26 4
gpt4 key购买 nike

我正在尝试使用 Xamarin.iOS (Monotouch) 显示 UIAlertView。我在主线程上运行调试构建时工作正常。

但是,一旦我切换到 Release模式,警报 View 就不会显示。这是一个例子

var erroralert1 = new UIAlertView("Location", "Test", null, "Ok", null);
erroralert1.Show();

它们不会显示在发布版本中吗? UIAlertViews 是简单的调试工具吗?

最佳答案

尽管 UIAlertView 已被弃用并且应该被 UIAlertController 取代,但它不是调试工具。根据您在此处显示的内容,应显示警报。您在异步方法中调用它吗?也许您的代码不在 UI 线程中。

您可以尝试通过以下方式调用它:

InvokeOnMainThread (() =>
{
var erroralert1 = new UIAlertView("Location", "Test", null, "Ok", null);
erroralert1.Show();
});

关于ios - UIAlertView 未在 Monotouch Release 版本中显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32766748/

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