问题标签 [uialertviewdelegate]

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.

0 投票
2 回答
72 浏览

ios - Multiple errors show in the same UIAlertView

I searched the net but have not found an answer. in my app i have a user registration, so i have to check the input text field before i accept the user.

here is my code:

but if more than one error occurs the user get many pop ups. there is any way to show all the errors in the same UIAlertview?

0 投票
2 回答
779 浏览

ios - 验证 UITextField 并在错误时显示 UIAlertView

如果出现错误,我想验证 UITextField 并显示 UIAlertView。

以前我使用下面的代码。它与 2 个 UIExfields 完美配合,但对于许多 UITextfield,这是不可能的。

任何提示如何显示 UIAlertView 来验证我的 UIExfields ?

0 投票
2 回答
4859 浏览

ios - 你能在 Swift 中创建匿名内部类吗?

我厌倦了将整个类声明为能够UIAlertView通过使它们扩展来处理点击UIAlertViewDelegate。当我有多个可能的 s 时,它开始感到混乱和错误UIAlertView,并且必须区分在处理程序中单击了哪个。

我真正想要的是创建一个实现UIAlertViewDelegate协议的对象,并在显示时将这个一次性对象提供给我UIAlertView

我想要这样的东西:

然后在显示警报时使用它:

在不声明新类的情况下这可能吗?

我知道我可以这样做:

然后实例化 a ConfirmDelegate(),但我只是想知道这是否可以作为单行类声明和实例化。

0 投票
1 回答
148 浏览

ios - 自定义默认 UIAlertView

我想将视图(灰色)的默认 UIAlertView 背景颜色更改为红色。我该怎么做?

0 投票
1 回答
180 浏览

objective-c - 为什么 UIAlertView 在用户通过点击按钮做出响应之前不会阻塞?

在我的 iOS 7 应用程序中,我需要验证用户是否想从 Cord Data 中删除选定的记录。我在 .h 文件中定义了 UIAlertViewDelegate。这是显示警报的代码:

这是检查哪个按钮被点击的代码:

问题是显示警报,然后立即通过该方法中的其余代码。我以前从未见过这个;通常它会阻塞,直到用户通过点击其中一个按钮做出响应(至少我认为是这样)。在用户响应之前,我需要做什么才能阻止此警报?(我正在查看 UIAlertView 块,但不确定是否可以完成这项工作,因为它似乎使用了不同的线程)

0 投票
1 回答
151 浏览

ios - iOS 中的 UIAlertView 委托协议

我是iOS开发的初学者,昨天 从苹果开发者网站UIAlertViewDelegate了解了协议。

我用于-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex管理buttonindex和执行特定任务。

但是,当我UIAlertView在同一个插座上使用 2 时,它们都使用相同的UIAlertViewDelegate协议。如何UIAlertView在我的应用程序中为另一个委托使用不同的委托?

另外,如何更改UIAlertView我的应用程序中的默认设计?

0 投票
1 回答
40 浏览

ios - 关于更改 UIAlertview GUI

昨天我使用 UIAlertViewDelegate ...

它们之间有什么区别:

0 投票
4 回答
1817 浏览

ios - 将信息传递给 UIAlertView 委托

在用户确认后,我正在尝试使用警报视图删除表视图中的一行。但是我不知道如何让UIAlertViewDelegate方法知道要删除表中的哪一行。

在警报方法中,我尝试处理它以从表和数据库中删除行

0 投票
3 回答
1506 浏览

ios8 - 为什么我的 UIAlertView 标签/文本在 iOS 8 中默认为粗体

我搜索了这个,唯一的解决方案似乎来自 UIAlertViewDelegate。我不想这样做只是为了消除粗体文字。

我用来弹出警报视图的代码如下:

在此处输入图像描述

0 投票
1 回答
135 浏览

ios - Why is this UIAlertView's Position not changing?

I've tried adding an AffineTransform as well. But it just doesn't change. Can someone help me out here?