0

我可能会尝试将弹出框居中并使其在旋转后仍居中。这项研究几乎回答了我的问题。但是,我注意到一个非常奇怪的问题:当我在设备处于纵向时启动弹出框时,它首先是居中的,但是,如果我旋转到横向,然后将它再次旋转到纵向,它是一个比中心位置高一点。我通过屏幕截图制作了一张照片以表明

前后对比

左边的截图是正确的位置,在第一次启动popover时出现,右边的截图是错误的位置,你可以通过我画的线清楚地看到它们之间的区别。

这是我用来使弹出框居中的代码

override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
        if let controller = self.presentedViewController as? PopoverController {
            controller.popoverPresentationController?.sourceRect = CGRect(x: size.width / 2,
                                                                          y: size.height / 2,
                                                                          width: 0, height: 0)
            let globalPoint = controller.view.superview?.convert(controller.view.frame.origin, to: nil)
            controller.label.text = "x: \(globalPoint!.x), y: \(globalPoint!.y)"
            self.view.layoutIfNeeded()
        }
    }

    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
        if segue.identifier == "popoversegue" {
            let controller = segue.destination
            controller.popoverPresentationController!.delegate = self
            controller.popoverPresentationController!.sourceRect = CGRect(x: view.center.x, y: view.center.y,
                                                                          width: 0, height: 0)
            controller.popoverPresentationController?.sourceView = self.view
            controller.preferredContentSize = CGSize(width: 500, height: 600)
            controller.popoverPresentationController!.permittedArrowDirections = UIPopoverArrowDirection(rawValue: 0)
        }
    }

此外,我已经意识到这个问题只发生在纵向,弹出框总是在横向位置很好地居中。这里可能有什么问题?

4

1 回答 1

2

使您的课程符合“UIPopoverPresentationControllerDelegate”

然后添加以下代码。我已经尝试过并且工作正常。

func popoverPresentationController(_ popoverPresentationController: UIPopoverPresentationController, willRepositionPopoverTo rect: UnsafeMutablePointer<CGRect>, in view: AutoreleasingUnsafeMutablePointer<UIView>) {
        let viewFrame = popoverPresentationController.presentingViewController.view.frame
        let deltaX = viewFrame.height - rect.pointee.midX
        rect.pointee = CGRect(x: viewFrame.width - deltaX, y: rect.pointee.maxY, width: 0, height: 0)
    }
于 2020-05-08T18:18:37.900 回答