我正在开发一个已经使用 iOS-7 发布的项目。但现在由于操作表出现问题,所以我现在正在实现 UIAlertController。以下是我使用 UIPicker 显示 UIAlertController 的代码。
alertController = [UIAlertController alertControllerWithTitle:@"" message:@"" preferredStyle:UIAlertControllerStyleActionSheet];
UIAlertAction *alertAction = [UIAlertAction actionWithTitle:@"" style:UIAlertActionStyleDefault handler:nil];
[alertController addAction:alertAction];
[alertController addAction:alertAction];
[alertController addAction:alertAction];
[alertController addAction:alertAction];
[pickerToolbar setFrame:CGRectMake(0, 0, self.view.frame.size.width-20, 44)];
[alertController.view addSubview:pickerToolbar];
[alertController.view addSubview:picker];
[alertController.view setBounds:CGRectMake(0, 0, self.view.frame.size.width, 485)];
[self presentViewController:alertController animated:YES completion:nil];
但我无法在其中添加日期选择器。它与普通选择器不同,并且应用程序挂起。请为在 UIAlertController 中添加 UIDatePicker 的任何示例代码提供建议。提前致谢