问题标签 [uialertviewcontroller]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ios - 当 UIAlertviewController 存在时 rightBarButtonItem 位置发生变化
我正在右栏按钮项内设置图像。我使用了默认导航栏。
任何人都知道为什么它会在UIAlertviewController
出现时发生?
ios - 软件键盘的不稳定解雇
预期行为:用户在里面点击TextField1
,键盘弹出,用户输入一个值,NextButton
被按下,键盘应该被关闭。
异常:按 时键盘消失NextButton
,但随后的警报消失后又弹出!为什么?
另一方面,如果从未调用警报(//[self showDisclaimer]
),则键盘会正确关闭...
我知道它 alertView
已被弃用,但这不是错误的根源,因为如果我使用它,我会得到完全相同的行为UIAlertController
。
有人可以对此有所了解吗?
objective-c - 找不到 self presentViewController 方法
尝试使用开发人员文档中的确切示例将 alertview 替换为 alertviewcontroller,但不断收到找不到 presentViewController 方法的错误。
这是我的代码。我试图用十几个变体替换“self”,所有这些都会导致应用程序崩溃。
ios - 通过 tel:// 提示处理 iOS 的警报视图控制器
在 iOS 上,通过以下方式打开tel
链接
或更早版本(适用于 iOS 9 及更早版本)
将使 iOS 显示UIAlertViewController
并代表您将其呈现给用户。
我似乎找不到处理这个问题的方法UIAlertViewController
。我想知道什么时候显示什么时候不显示。
通常,如果您UIAlertViewController
自己实例化并呈现 a,您可以查看它是否显示,因为
不会nil
。
本质上,当显示系统显示的警报(例如提示)时,我想“暂停”一种行为tel
,然后在它被解除时“恢复”。
我查看了 Apple 的文档,似乎找不到任何关于此的内容。任何帮助是极大的赞赏!
ios - 如何在 UIAlertViewController 中添加 UICollectionView?
关于stackoverflow How to add UITableView in a UIAlertView in swift和How to add a UITableView inside the UIAlertView in iPhone? 但我在 UIAlertViewController 中添加 UICollectionView 并且我正在崩溃
由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“-[UICollectionView 视图]:无法识别的选择器发送到实例 0x103808200”
我正在使用以下代码
请让我知道我在这里做错了什么
编辑 1:如果我使用下面的代码将 UICollectionViewController 作为子视图添加到 UIAlertController 那么我就像截图一样出来了
ios - 无法在 AppDelegate 中的 rootViewController 上显示 alertViewController
我想在启动应用程序时在 AppDelegate 中的 rootViewController 上显示 alertViewController。这里的代码片段:
警报未出现在 rootViewController 上。请帮我。