gpt4 book ai didi

objective-c - UIActionSheet 中途出现

转载 作者:行者123 更新时间:2023-11-29 13:32:42 25 4
gpt4 key购买 nike

我正在寻找一种方法让 UIPickerView 显示“完成”、“取消”按钮。
谷歌搜索我发现了很好的帖子,所有帖子都涉及 UIActionSheet。

所以我这样做了

容器是一个UIView
actionSheet 是一个 UIActinSheet
pickerView 是一个 UIPickerView

viewDidLoad中:

container = [[[UIView alloc] initWithFrame:CGRectMake(rect.origin.x,rect.origin.y, rect.size.width, rect.size.height)] autorelease];
[self.view addSubview:container];

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

[actionSheet setActionSheetStyle:UIActionSheetStyleBlackTranslucent];

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

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

UIToolbar *toolbar = [[[UIToolbar alloc] init] autorelease];
toolbar.frame = CGRectMake(0, 0, self.view.frame.size.width, 44);
NSMutableArray *items = [[[NSMutableArray alloc] init] autorelease];
[items addObject:[[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(dismissActionSheet)] autorelease]];
[items addObject:[[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:@selector(goActionSheet)] autorelease]];
[items addObject:[[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(goActionSheet)] autorelease]];
[toolbar setItems:items animated:NO];

[actionSheet addSubview:toolbar];
[actionSheet addSubview:pickerView];

[actionSheet showInView:container];

[actionSheet setBounds:CGRectMake(0, 0, 320, 485)];

应用程序开始时很棒,整个事情都按照预期进行:[actionSheet showInView:container];

现在,当我尝试关闭 ActionSheet 时,效果很好!

dismissActionSheet 中:

[actionSheet dismissWithClickedButtonIndex:1 animated:NO];

问题是,如何让它再次出现?

当我使用时:

[actionSheet showInView:container];

我只使用按钮从底部选择工具栏,仅此而已。整个 PickerView 都在底部,我看不到。

我在这里做错了什么?

最佳答案

操作表旨在更像警报一样使用,因为它们是独立的“立即做出选择”演示者。它们通常只在 iPhone 上部分显示。

您的选择器应该独立于操作表。如果您想要“完成”和“取消”按钮,也许您会考虑将它们添加到选择器的导航栏中?

关于objective-c - UIActionSheet 中途出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11470740/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com