如何在uiactionsheet中管理uipickerview

Posted

技术标签:

【中文标题】如何在uiactionsheet中管理uipickerview【英文标题】:how to manage uipickerview in uiactionsheet 【发布时间】:2013-08-05 08:28:53 【问题描述】:

我正在尝试在 UIActionSheet 中显示 UIPickerView。从下面提到的代码来看,它在纵向模式下效果很好,但在横向模式下看起来很有线。 (我的应用程序也支持 iPhone 4/5 n 横向)。 我做错了什么?

 actionSheet = [[UIActionSheet alloc] initWithTitle:nil
                                              delegate:nil
                                     cancelButtonTitle:nil
                                destructiveButtonTitle:nil
                                     otherButtonTitles:nil];

    [actionSheet setActionSheetStyle:UIActionSheetStyleBlackTranslucent];


    CGRect pickerFrame=CGRectMake(0, 40, 0, 0);

    UIPickerView *pickerView = [[UIPickerView alloc] initWithFrame:pickerFrame];
    pickerView.showsSelectionIndicator = YES;
    pickerView.dataSource = self;
    pickerView.delegate = self;


    [actionSheet addSubview:pickerView];

    UISegmentedControl *closeButton = [[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObject:@"OK"]];
    closeButton.momentary = YES;
    closeButton.frame = CGRectMake(260, 7.0f, 50.0f, 30.0f);
    closeButton.segmentedControlStyle = UISegmentedControlStyleBar;
    closeButton.tintColor = [UIColor blackColor];
    [closeButton addTarget:self action:@selector(dismissActionSheet:) forControlEvents:UIControlEventValueChanged];

    [actionSheet addSubview:closeButton];
    [actionSheet showInView:self.view];
    [actionSheet setBounds:CGRectMake(0, 0, 320, 485)];

【问题讨论】:

【参考方案1】:

终于解决了

首先我必须设置选择器视图的宽度,就像我提到的那样

CGRect pickerFrame=CGRectMake(0, 40, 0, 0);

所以它可以像

CGRect pickerFrame=CGRectMake(0, 40, 320, 0);

我找到了一个更好的解决方案:

只需通过单击文本字段来调用操作表中的选择器视图:

self.textField.inputView = yourCustomView;

【讨论】:

我用了第三个选项,太棒了!

以上是关于如何在uiactionsheet中管理uipickerview的主要内容,如果未能解决你的问题,请参考以下文章

如何在uiactionsheet中管理uipickerview

如何关闭操作表

如何在 UIPicker 中动态填充值

在 iOS 7 中,如何更改 UIActionSheet 中选项的颜色?

如何在 UIActionSheet 中添加 UIPickerView

如何知道视图层次结构中是不是显示 UIActionSheet?