0

我在 UISplitViewController 上呈现一个模态视图(使用 UIModalPresentationFormSheet)。我想获得模态视图相对于 UISplitViewController (基本上是整个窗口)的确切矩形。即模态视图位于 x,y 坐标和大小。我怎么会找到这个?我查看了 UIView 的“convertRect:fromView:”方法,但不知道哪种组合会起作用。

谢谢。

4

1 回答 1

0

[splitView convertRect:modallyPresentedVC.view.bounds fromView:modallyPresentedVC.view]应该做的伎俩。确保在演示文稿的完成块中调用它(在所有动画完成后)。

于 2013-09-07T05:52:50.687 回答