iPad 上的 UIPopoverPresentationController

UIPopoverPresentationController on iPad

我想在 UIPopoverPresentationController 中呈现一个 viewController 就像 iOS 设置应用程序在我们选择语言时做的那样。它在设备屏幕中央显示 viewController!

但是,我的结果不是这样的!

这是我的代码:

func rightButtonPressed(rightBarButton: UIBarButtonItem) {
    let detailVC = self.storyboard?.instantiateViewControllerWithIdentifier("ExampleViewController") as! ExampleViewController
    detailVC.modalPresentationStyle = .Popover
    let popOverVC = detailVC.popoverPresentationController
    popOverVC?.permittedArrowDirections = .Any
    popOverVC?.barButtonItem = rightBarButton
    popOverVC?.sourceView = self.view
    popOverVC?.delegate = self

    self.presentViewController(detailVC, animated: true, completion: nil)
}

代表:

extension DetailViewController: UIPopoverPresentationControllerDelegate {
    func adaptivePresentationStyleForPresentationController(controller: UIPresentationController) -> UIModalPresentationStyle {
        debugPrint(controller.description)
        return .Popover
    }

    func presentationController(controller: UIPresentationController, viewControllerForAdaptivePresentationStyle style: UIModalPresentationStyle) -> UIViewController? {
        let navController = UINavigationController.init(rootViewController: controller.presentedViewController)
        return navController 
    }
}

尝试将演示文稿样式设置为 sheet:

detailVC.modalPresentationStyle = UIModalPresentation.FormSheet