我在UISplitViewController上呈现模态视图(使用UIModalPresentationFormSheet)。我想获得模态视图相对于UISplitViewController(基本上是整个窗口)的确切矩形。即模态视图位于x,y坐标和大小。 我怎么会发现这个?我查看了UIView的“convertRect:fromView:”方法,但无法弄清楚哪种组合可行。
感谢。
答案 0 :(得分:0)
[splitView convertRect:modallyPresentedVC.view.bounds fromView:modallyPresentedVC.view]
应该做到这一点。确保在演示文稿的完成块中调用它(在所有动画完成之后)。