2

当我在iOS8 Beta5+ Xcode6中显示UIAlertController(ActionSheet)时,运行时异常即将到来。

此错误仅发生在iPad设备中。

使用 UIAlertController 时出现以下异常。

*由于未捕获的异常“NSGenericException”而终止应用程序,原因:“UIPopoverPresentationController (<_UIAlertControllerActionSheetRegularPresentationController: 0x15794370>) 应该在演示发生之前设置一个非零的 sourceView 或 barButtonItem。”

我的显示 ActionSheet 代码如下

     // Cancel Button
      UIAlertAction *actionCancel = [UIAlertAction
                                               actionWithTitle:NSLocalizedString(@"IDS_LABEL_CANCEL", nil)
                                               style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
                                                   // cancel
                                                   //action handler
                                                   [self actionHandler:nil withTag:0 withButtonIndex:0];
                                               }];

      // print button
      UIAlertAction *actionPrint = [UIAlertAction
                                                      actionWithTitle:NSLocalizedString(@"IDS_LABEL_PRINT", nil)
                                                      style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {

                                                          //action handler
                                                          [self actionHandler:nil withTag:kAttachmentActionSheetTag withButtonIndex:0];         
                                             }];

    // Create action sheet
     UIAlertController *alertController = [UIAlertController
                                                      alertControllerWithTitle:nil message:nil
                                                      preferredStyle:UIAlertControllerStyleActionSheet];

[alertController addAction:actionCancel];
[alertController addAction:actionPrint];

     // show aciton sheet
     [self  presentViewController:alertController animated:YES
                                 completion:nil] ;
4

1 回答 1

5

在 iPad 上,警报将使用新的UIPopoverPresentationController显示为弹出框,它要求您使用以下三个属性之一为弹出框的呈现指定一个锚点:

为了指定锚点,您需要获取对 UIAlertController 的 UIPopoverPresentationController 的引用并设置以下属性之一:

alertController.popoverPresentationController.sourceView = parentView;
于 2014-09-03T09:49:32.420 回答