在 iOS 8 之前,我一直在UIActionSheet
非常简单地展示一个选择器。现在,他们似乎已经用最新的更新打破了这个功能。它从未得到支持,并且在文档中一直不鼓励这种做法。
据推测,整个UIActionSheet
功能已被弃用,并且不会在未来得到支持。文档说要改用 UIAlertController 。
我尝试切换到UIAlertController
并实际上发现我最初期望的解决方案比我最初提出的解决方案更好。
我的原始代码:
// Ask user for project to associate the new issue with a project
UIActionSheet *menu = [[UIActionSheet alloc] initWithTitle:NSLocalizedString(@"Select Project", @"Title for Action Sheet")
delegate:self
cancelButtonTitle:klocalized_CancelButtonTitle
destructiveButtonTitle:nil
otherButtonTitles:klocalized_SelectButtonTitle ,nil];
[menu addSubview:self.projectPicker];
[menu showFromTabBar:self.tabBarController.tabBar];
[menu setBounds:CGRectMake(0, 0, 320, 700)];
在 iOS 7 中运行良好。
我的新代码。看起来更好,但由于某种原因,我无法UITextField
尊重我的inputView
财产设置。它使用标准键盘显示我的文本字段,否则这将是一个可以接受的替代方案,在我看来甚至比原来的更好。
iOS 8 的新功能正在进行中:
// is iOS 8, ActionSheet, newly deprecated, will not allow subviews. Use UIAlertController instead
NSString *title = NSLocalizedString(@"Select Project", @"Title for Action Sheet");
UIAlertController *projectSelector = [UIAlertController alertControllerWithTitle:title message:nil preferredStyle:UIAlertControllerStyleAlert];
[projectSelector addAction:[UIAlertAction actionWithTitle:klocalized_CancelButtonTitle style:UIAlertActionStyleCancel handler:nil]];
[projectSelector addAction:[UIAlertAction actionWithTitle:klocalized_SelectButtonTitle style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
// Do my button action stuff here
}]];
[projectSelector addTextFieldWithConfigurationHandler:^(UITextField *textField) {
// projectField is lazily created property.
//My picker is set as its inputView but standard keyboard is always presented instead.
textField = self.projectField;
}];
[self presentViewController:projectSelector animated:YES completion:^{
// Do my final work here
}];
谁能告诉我为什么会这样?新视图上的inputView
属性是否不可UITextfield
用?UIAlertController
有没有人UIPickerView
以这种方式成功使用?
我没有包含我的projectField
orprojectPicker
属性的代码,但我已经测试和检查了。他们确实创建了有效的对象。选择器由我呈现的 VC 保留,文本字段很弱,由我假设的 AlertViewController 拥有。我也尝试保留它,但没有效果。
我也确实收到UITextField
了来自文本字段的代表调用,所以我知道呈现的是我创建的对象。当我将pickerView明确设置为inputView
.
在屏幕截图中查看结果视图: