是否可以强制 UIPopoverPresentationController 重新定位弹出框而不是调整它的大小?

Can UIPopoverPresentationController be forced to reposition popover instead of resizing it?

我在 Storyboard 中使用自动布局。我从单元格 rect 中呈现一个 popoverPresentationController:

NumberController * viewController = [self.storyboard instantiateViewControllerWithIdentifier:@"NumberController"];
UIPopoverPresentationController *pc = [viewController popoverPresentationController];
    pc.delegate = self;
    pc.permittedArrowDirections = UIPopoverArrowDirectionAny;
    pc.sourceView = tableView;
    pc.sourceRect = [tableView rectForRowAtIndexPath:indexPath];
    [self.navigationController presentViewController:viewController animated:animated completion:nil];

弹出窗口以纵向模式显示在 iPad 上,箭头向上。

我将 iPad 旋转到横向模式。 popoverPresentationController 保持不变 sourceView/sourceRect 并正确指向单元格。它还保留向上箭头。

但它现在位于视图的底部,因此弹出窗口的大小会调整到较短的高度。这不是我们想要的行为。

如果弹出窗口只是移动到新位置并改变箭头方向,则根本不需要调整大小。这是期望的行为。

我认为以下方法可能允许我进行更改,但由于 sourceView 矩形没有更改,因此未被调用:

- (void)popoverController:(UIPopoverController *)popoverController
willRepositionPopoverToRect:(inout CGRect *)rect
                   inView:(inout UIView **)view {

}

我已尝试重置 permittedArrowDirections(在 preferredContentSize 中,因为这似乎是最合乎逻辑的位置)。这不起作用(弹出窗口仍会调整大小):

- (CGSize) preferredContentSize {
    [super preferredContentSize];
    self.popoverPresentationController.permittedArrowDirections = UIPopoverArrowDirectionUnknown;
    return CGSizeMake(DEFAULT_POPOVER_WIDTH,DEFAULT_POPOVER_HEIGHT);
}

我根本找不到一种方法来强制 popoverPresentationController 更改箭头方向并重新定位弹出框,而不是调整弹出框的大小。我开始认为这甚至是不可能的 - 但我仍然抱有希望,我只是错过了一些东西。

编辑:与此同时,我想到如果我不想在 iPad 中调整它的大小,弹出窗口可能不是呈现此视图的最佳方式。我将尝试使用 UIModalPresentationFormSheet 演示文稿。但我还是想找到这个问题的答案。

我刚运行进入问题所在

    - (void)popoverController:(UIPopoverController *)popoverController
    willRepositionPopoverToRect:(inout CGRect *)rect
               inView:(inout UIView **)view {

未被调用,因为我的视图控制器已分离。您的视图层次结构中可能有一个视图,其视图控制器尚未添加为子视图控制器。

I thought the following method might permit me to make changes, but it is not called since the sourceView rect does not change

sourceView 矩形不必更改,只需更改界面方向即可。来自 UIPopoverControllerDelegate 文档:

For popovers that were presented using the presentPopoverFromRect:inView:permittedArrowDirections:animated: method, the popover controller calls this method when the interface orientation changes.