- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一个行动表,其中的选项会根据情况而有所不同。有足够多不同的按钮标题,我想首先构建这些按钮标题的数组,但我不知道如何将其转换为可变参数格式。
我想做这样的事情:
NSMutableArray *buttonTitles = [NSMutableArray array];
if (condition1) {
[buttonTitles addObject: @"Do action 1"];
}
if (condition2) {
[buttonTitles addObject: @"Do action 2"];
}
if (condition3) {
[buttonTitles addObject: @"Do action 3"];
}
if (condition4) {
[buttonTitles addObject: @"Do action 4"];
}
UIActionSheet *actionSheet = [[[UIActionSheet alloc] initWithTitle: nil delegate: self cancelButtonTitle: @"Cancel" destructiveButtonTitle: nil otherButtonTitles: buttonTitles] autorelease];
现在很明显,如果我不得不这样做,我可以改为这样做:
UIActionSheet *actionSheet = nil;
if (condition1 && condition2 && condition3 && condition4) {
actionSheet = [[[UIActionSheet alloc] initWithTitle: nil delegate: self cancelButtonTitle: @"Cancel" destructiveButtonTitle: nil otherButtonTitles: @"Do action1", @"Do action2", @"Do action3", @"Do action 4", nil] autorelease];
} else if (condition1 && condition2 && condition3 && !condition4) {
actionSheet = [[[UIActionSheet alloc] initWithTitle: nil delegate: self cancelButtonTitle: @"Cancel" destructiveButtonTitle: nil otherButtonTitles: @"Do action1", @"Do action2", @"Do action3", nil] autorelease];
}
// else ...
// about 14 other cases!
但那将是可怕的。任何人都知道一些不错的语法糖来帮助我吗?
编辑:有人建议我使用 addButtonWithTitle
,从表面上看它看起来很棒,不幸的是,它将附加按钮放在取消按钮之后,这是不可取的。
我相信这是 Apple 代码的错误,因为他们在 addButtonWithTitle
上的文档指出:
// adds a button with the title. returns the index (0 based) of where it was added. buttons are displayed in the order added except for the
// destructive and cancel button which will be positioned based on HI requirements. buttons cannot be customized.
HI 要求(Apple 自己的人机界面指南)支持所有其他选项下方的取消按钮,所以我认为 Apple 搞砸了。当然,这并没有真正帮助我,所以我又开始尝试在 NSArray 和可变参数之间进行转换,但我仍然不知道该怎么做。
最佳答案
你可以试试这个
NSMutableArray *buttonTitles = [NSMutableArray array];
if (condition1) {
[buttonTitles addObject: @"Do action 1"];
}
if (condition2) {
[buttonTitles addObject: @"Do action 2"];
}
if (condition3) {
[buttonTitles addObject: @"Do action 3"];
}
if (condition4) {
[buttonTitles addObject: @"Do action 4"];
}
[buttonTitles addObject: @"Cancel"];
UIActionSheet *actionSheet = [[[UIActionSheet alloc] initWithTitle: nil delegate: self cancelButtonTitle: nil destructiveButtonTitle: nil otherButtonTitles: nil] autorelease];
for (NSString *title in buttonTitles) {
[actionSheet addButtonWithTitle: title];
}
[actionSheet setCancelButtonIndex: [buttonTitles count] - 1];
关于iphone - 如何将字符串数组发送到 UIActionSheet varargs init 方法中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7781022/
我使用了两个不同的 NSArray 在自定义 TableView 中的两个不同标签中显示数据。如何使用 UIActionSheet(使用 UIActionSheet 的破坏性按钮)从 TableVie
这个问题我真的很困惑。我在我的应用程序中设置了两个 UIActionSheets。它们工作得很好,直到您使用 UIActionSheets 中的取消按钮。 当我离开该页面时,UIAactionShee
有没有办法以编程方式设置 UIActionSheet 的方向?我的 iPhone 方向是纵向,但 UIActionSheet 需要是横向。这可以吗? 编辑: 所以我的问题是我不想将 rootviewc
我正在初始化一个 UIActionSheet,我想从数组、集合或其他内容填充它的“otherButtonTitles”,如下所示 UIActionSheet* aSheet = [[UIActionS
这个问题已经有答案了: iPhone development: How to create colored or translucent background for UIActionSheet? (
他们有什么原因导致我的 UIActionSheet 需要一段时间才能加载吗?它在启动后工作正常,但是一旦我循环执行一些操作一两次,加载速度就非常慢,您可以看到灰色背景爬下来以完成图纸的绘制。 帮忙?
我有一个 uiactionsheet,按钮在我第一次按下或第二次按下时无法正常工作,但在尝试后只有多次。我尝试删除底部的取消按钮并保留按钮标题,但这些步骤都没有解决问题。这是我正在使用的代码: UIA
我正在尝试在我的应用程序中显示 UIActionsheet。它在纵向模式下工作得很好,但当我尝试让它以横向模式显示时,它仍然从底部滑入。但是,它不再像横向模式那样使用按钮并通过选择器控件进行显示。它只
我有一个像这样设置的 UIActionSheet: -(void)trash:(id)sender { UIActionSheet *sheet = [[[UIActionSheet alloc] i
在 Twitterific 应用程序中,有一个看起来像 UIActionSheet 的控件,但它看起来是自定义的。 我想知道如何使用水平行而不是默认垂直行中的按钮来创建具有相似外观和感觉的 View
我们可以更改破坏性按钮和其他按钮在 UIActionSheet 中出现的顺序吗?默认情况下,破坏性按钮(红色)显示在其他按钮上方,在我的应用程序中,我希望其他按钮显示在破坏性按钮上方。 最佳答案 没问
我读了很多相关内容。人们说,当其父级未设置为自动旋转时,它不会自动旋转。我尝试了一切但没有运气。我创建了基于 View 的应用程序(v4.2),并带有一个执行此操作的按钮: UIActionS
在操作表上将按钮设置为破坏性按钮的准则是什么。我的操作表包含两个按钮“取消”和“删除”,点击“取消”将关闭操作表,而点击“删除”将删除所选项目。我应该选择哪一个作为破坏性按钮? 最佳答案 来自类引用:
如何更改 UIActionSheet 按钮的颜色? 最佳答案 iOS 8 (UIAlertController) 如果您使用 UIAlertController,则非常简单。只需更改 UIAlertC
当我运行我的应用程序并单击操作表按钮时,会出现以下内容: Presenting action sheet clipped by its superview. Some controls might n
我想使用 UIActionSheet 来允许用户选择我的 iPhone 应用程序的两种模式之一。所以我不需要显示取消按钮。我只是想问他是否想选择模式一还是模式二。我尝试不添加它,但它不允许我添加,那么
我想要一个子类 UIActionSheet使用 block 方法而不是委托(delegate)。 我的问题是当我在 UIActionSheet 上调用 super 初始化时可变参数 ...在方法结束时
我想知道如何定制这样的 UIActionSheet: 当您按下按钮以显示此 View 时,它确实像 UIActionSheet 一样出现,但老实说,我不太确定他们没有使用包含两个按钮的 UIView
我有一个 iOS6 应用程序,它使用以下代码创建带有时间选择器的 UIActionSheet: - (void)willPresentActionSheet:(UIActionSheet *)acti
我有一个 UIActionSheet 来选择在我的应用程序中使用的时间。选择时间可以正常工作,但是当单击“完成”按钮时,我找不到隐藏操作表的方法。 我的代码是: -(void) showTimespa
我是一名优秀的程序员,十分优秀!