iOS: размер кадра контроллера презентаций изменяется в зависимости от ориентации устройства - PullRequest
0 голосов
/ 29 ноября 2018

Как сохранить высоту контроллера презентации одинаковой при изменении ориентации устройства.Ниже приведен код:

    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

Вот пример кода

1 Ответ

0 голосов
/ 29 ноября 2018

Я думаю, что получил решение.Может быть, не очень интуитивно понятно, но это работает.Ниже приведен код, который будет работать в моем примере.

Я отказываюсь и представляю контроллер в "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)
                }
            }
        }
    }
...