1

如何在设备方向更改时保持演示控制器高度相同。下面是代码:

    func presentationControllerForPresentedViewController(presented: UIViewController, presentingViewController presenting: UIViewController!, sourceViewController source: UIViewController) -> UIPresentationController? {
        return MyPresentationController(presentedViewController: presented, presentingViewController: presenting)
    }

    class MyPresentationController : UIPresentationController {
        override func frameOfPresentedViewInContainerView() -> CGRect {

        let controllerHeight:CGFloat = 200.0
        let width = UIScreen.main.bounds.width
        let height = UIScreen.main.bounds.height

        return CGRect(x: 0.0, y: height - controllerHeight, width: width, height: controllerHeight)
        }
    }

    let pvc = MyPresentationController()
    pvc.modalPresentationStyle = UIModalPresentationStyle.Custom
    pvc.transitioningDelegate = self

这是代码示例

4

1 回答 1

1

我想我得到了解决方案。也许不是很直观,但它确实有效。下面是可以在我的示例中使用的代码。

我在“viewWillTransition”上解雇并代表控制器

override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {

        if let pvc = presentedViewController {
            pvc.dismiss(animated: true) {
                DispatchQueue.main.async {
// your presentedViewController
                    self.performSegue(withIdentifier: "sampleSegue",
                                      sender: nil)
                }
            }
        }
    }
于 2018-11-29T13:13:41.447 回答