- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我要
起初在我看来这是一个简单的解决方案,因为您可以在网络上的任何地方找到用于将选择器 View 添加到操作表的代码,但所有解决方案都将按钮放在顶部,我需要将按钮放在操作表底部(对齐?)。
这可能吗?我想如果我看一下:Example
问候
杰文
已编辑(我的解决方案基于编码爸爸解决方案)
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:nil
delegate:nil
cancelButtonTitle:nil
destructiveButtonTitle:nil
otherButtonTitles:nil];
[actionSheet setActionSheetStyle:UIActionSheetStyleBlackTranslucent];
CGRect pickerFrame = CGRectMake(0, 0, 0, 0);
UIPickerView *pickerView = [[UIPickerView alloc]initWithFrame:pickerFrame];
pickerView.showsSelectionIndicator = YES;
pickerView.dataSource = self;
pickerView.delegate = self;
UISegmentedControl *backButton = [[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:@"Back", nil]] ;
[backButton addTarget:self action:@selector(someFunction:) forControlEvents:UIControlEventValueChanged];
backButton.tintColor = [UIColor colorWithRed:0.10 green:0.20 blue:0.52 alpha:0.5];
backButton.segmentedControlStyle = UISegmentedControlStyleBar;
[backButton addTarget:self action:@selector(btnActionCancelClicked:) forControlEvents:UIControlEventAllEvents];
backButton.frame = CGRectMake(20.0, 220.0, 280.0, 40.0);
UISegmentedControl *acceptButton = [[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:@"Accept", nil]] ;
[acceptButton addTarget:self action:@selector(anotherFunction:) forControlEvents:UIControlEventValueChanged];
acceptButton.tintColor = [UIColor colorWithRed:0.10 green:0.20 blue:0.52 alpha:0.5];
acceptButton.segmentedControlStyle = UISegmentedControlStyleBar;
acceptButton.frame = CGRectMake(20.0, 280.0, 280.0, 40.0);
[actionSheet addSubview:pickerView];
[actionSheet addSubview:backButton];
[actionSheet addSubview:acceptButton];
[actionSheet showInView:[[UIApplication sharedApplication] keyWindow]];
[actionSheet setFrame:CGRectMake(0,150,320, 400)];
...然后只需应用 iPhone 5/iphone 4 相关的 View 大小限制
编辑 2:只是另一个提示!最初我想使用标准的 Actionsheet,但不想将 pickerview 放在底部。我没有找到如何移动按钮的方法。显然它真的很简单:Add UIView as subView on UIActionSheet很高兴知道 ;)
最佳答案
你有两种可能:
选项 1:大调整。
ActionSheet 按初始化期间定义的顺序显示按钮。所以在顶部放置一些虚拟按钮,取消将是唯一可见的,所有其他按钮将被 pickerview 隐藏。代码 (在 otherButtonTitles 处进行警告调整):
UIActionSheet *menu = [[UIActionSheet alloc] initWithTitle:@"Actionsheet"
delegate:self
cancelButtonTitle:@"Cancel"
destructiveButtonTitle:nil
otherButtonTitles:@"1", @"2", @"3", @"4", nil];
UIPickerView *pickerView = [[UIPickerView alloc] init];
pickerView.delegate = self;
pickerView.dataSource = self;
[menu addSubview:pickerView];
[menu showInView:self.view];
[menu setBounds:CGRectMake(0,0,320, 500)];
CGRect pickerRect = pickerView.bounds;
pickerRect.origin.y = 35;
pickerView.frame = pickerRect;
选项2:自制
menu = [[UIActionSheet alloc] initWithTitle:@"Actionsheet"
delegate:self
cancelButtonTitle:nil
destructiveButtonTitle:nil
otherButtonTitles:nil];
UIPickerView *pickerView = [[UIPickerView alloc] init];
pickerView.delegate = self;
pickerView.dataSource = self;
CGRect pickerRect = pickerView.bounds;
pickerRect.origin.y = 35;
pickerView.frame = pickerRect;
UIButton *startbtn = [UIButton buttonWithType:UIButtonTypeCustom];
startbtn.frame = CGRectMake(80,230, 170, 73);
[startbtn setBackgroundImage:[UIImage imageNamed:@"yourbutton.png"] forState:UIControlStateNormal];
[startbtn addTarget:self action:@selector(pressedbuttonCancel:) forControlEvents:UIControlEventTouchUpInside];
[menu addSubview:pickerView];
[menu addSubview:startbtn];
[menu showInView:self.view];
[menu setFrame:CGRectMake(0,150,320, 350)];
检查选项 2 按钮是否应该在操作表上,除非点击不会被分派(dispatch)到选择器方法。
关于iphone - 将 UIPickerView 添加到 UIActionSheet(底部的按钮),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16122487/
我使用了两个不同的 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
我是一名优秀的程序员,十分优秀!