问题标签 [uialertview]
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.
iphone - 使用公共 API 更改 UIAlertView 中的按钮行数
在 UIAlertView 中,我需要将按钮对齐到行中,以便每行有 2 个或每行有 3 个。这是针对应用商店应用程序的,因此我需要使用记录在案的方法。所以很明显我不能使用 setNumberOfRows: 为此。关于如何达到相同效果的建议?
iphone - iPhone 开发者手册:ModalAlert Frozen
我使用了来自 iPhone Developer's Cookbook 的名为 ModalAlert 的食谱,以便从用户那里获取一些文本;但是,当显示警报时,键盘和按钮会被冻结。这是模态警报的代码。
谢谢!
iphone - UIAlertView 按钮按下导致崩溃,当所有其他工作正常时
我有一个显示正常的警报视图。在我的标题中,我包含了 UIAlertViewDelegate,但由于某种原因,每当我单击警报视图上的一个按钮时,我的应用程序都会因严重过剩而崩溃,说发送了一个无法识别的选择器。
任何想法都会有所帮助。我在其他类中运行完全相同的代码,完全没有问题。
这是我的代码:
所以我能弄清楚的最好的事情,它与我从 UITableViewCell 子类调用 deletePatient 方法并在我这样做时传递患者对象的事实有关。这是传递它的代码
uialertview - Alertview 点击到 UITableviewcontroller
我是 iphone 编程新手。我有一个带有警报视图的视图控制器。当单击 alertview 上的 ok 按钮时,它会转到另一个 UITableviewcontroller。我能够得到我的细胞,里面有物体。但我无法获得顶部的导航栏。请告诉我是这样吗?
谢谢维基
ios - Create UIActionSheet 'otherButtons' by passing in array, not varlist
I have an array of strings that I want to use for button titles on a UIActionSheet. Unfortunately, the otherButtonTitles: argument in the method invocation takes a variable length list of strings, not an array.
So how I can I pass these titles into the UIActionSheet? The workaround I've seen suggested is to pass nil into otherButtonTitles:, then specify the button titles individually by using addButtonWithTitle:. But this has the problem of moving the "Cancel" button to the first position on the UIActionSheet rather than the last; I want it to be the last one.
Is there a way to 1) pass an array in lieu of a variable list of strings, or alternatively 2) move the cancel button to the bottom of the UIActionSheet?
Thanks.
iphone - 分配和解除 UIAlert w/spinner 动画:有时会崩溃,做错了吗?
我正在创建一个带有微调器图形的警报对话框。
然后它后来被这样解雇:
这有时会导致崩溃:
和痕迹:
有趣的一件事是对 GKPeerPicker 的引用,来自 GameKit;我没有在任何地方使用它(我正在使用 GameKit 的 GKSession,但我没有使用 GKPeerPicker 组件)。
iphone - UIAlertView 关闭应用
在我的项目中,我的应用程序首先尝试连接到互联网,但现在我必须检查是否有可用的连接!所以我在 else 部分的 UIAlertView 中做了一个 if, else !
但是如何通过单击以下按钮关闭整个应用程序?
谢谢大家事先的帮助
问候马可
iphone - 是否可以从左侧屏幕滑入 UIAlertView?
而不是从中心弹出,我们可以更改为另一个动画(例如,撤消动画)吗?
iphone - 创建半透明覆盖以模仿 UIAlertView 或 UIActionSheet?
在我目前正在开发的 iPhone 应用程序中,我展示了几个模仿 UIAlertView 和 UIActionSheet 行为的“警报”视图。这些视图需要在 UIAlertView 或 UIActionSheet 中不可用的非标准元素。我没有尝试子类化,而是创建了自己的类,以便可以轻松自定义警报的外观和感觉。
我遇到的一个问题是在显示警报视图时我无法淡化 iPhone 屏幕。在以与 UIAlertView 和 UIActionSheet 相同的方式呈现我的自定义视图时,我想淡出整个屏幕(包括状态栏)。我试图通过在整个屏幕上覆盖半透明视图来实现这一点,但无论我将视图添加为 keyWindow 的子视图还是最顶层视图,状态栏都不会被遮蔽。
有没有人对如何做到这一点有任何建议?这似乎应该很容易做到,所以我可能忽略了一些东西。
iphone - UIAlertView 显示两次
我的 alertview 出现两次,需要 2 次用户点击才能关闭。
然后我在委托方法“alertView: (UIAlertView *) alertView clickedButtonAtIndex: (int) index”中释放警报视图
我怀疑问题是我以编程方式构建了自己的视图层次结构。我有一个视图控制器的父视图。在此之下,我还有 2 个其他视图(parentView -> subview1 和 subview2)。我试图调用 [self.view addSubview: av] 但这不起作用。BringToFrontSubView 也没有:
任何帮助将非常感激
佩曼