簡體   English   中英

PopoverPresentationController委托方法未調用

[英]PopoverPresentationController delegate methods not called

我有一個在空的swift文件中構造UIPopoverPresentationController的類:

import Foundation
import UIKit

class Popovers : NSObject, UIPopoverPresentationControllerDelegate {

    func presentLoginScreen() {
        // Presenting login Popover

        let storyboard = UIStoryboard(name: "Main", bundle: nil)
        let loginScreen = storyboard.instantiateViewControllerWithIdentifier("LogInScreen")

        let window = UIApplication.sharedApplication().windows.last!
        let height = window.screen.bounds.size.height
        let width = window.screen.bounds.size.width

        loginScreen.modalPresentationStyle = UIModalPresentationStyle.Popover
        loginScreen.preferredContentSize = CGSizeMake(width * 0.85  , height * 0.35)

        let loginScreenPopover = loginScreen.popoverPresentationController
        loginScreenPopover?.permittedArrowDirections = UIPopoverArrowDirection.init(rawValue: 0)
        loginScreenPopover?.delegate = self
        loginScreenPopover?.sourceView = window.rootViewController?.view
        loginScreenPopover?.sourceRect = CGRectMake(CGRectGetMidX(window.screen.bounds), CGRectGetMidY(window.screen.bounds), 0, 0)

        window.rootViewController?.presentViewController(loginScreen, animated: true, completion: nil)

        let blur = UIVisualEffectView(effect: UIBlurEffect(style: .Light)) as UIVisualEffectView
        let bounds = window.screen.bounds
        blur.frame = bounds
        blur.autoresizingMask = [.FlexibleWidth, .FlexibleHeight]
        window.rootViewController!.view.addSubview(blur)

    }

    func adaptivePresentationStyleForPresentationController(controller: UIPresentationController) -> UIModalPresentationStyle {
        return UIModalPresentationStyle.None
    }

    func popoverPresentationControllerDidDismissPopover(popoverPresentationController: UIPopoverPresentationController) {
        // Remove blur layer
        print("method called")
        let window = UIApplication.sharedApplication().windows.last
        window?.subviews.last?.removeFromSuperview()


    }


}

但是每當我關閉PopoverPresentationController時,就永遠不會觸發委托方法popoverPresentationControllerDidDismissPopover

我已將loginScreenPopover的委托設置為self,並讓Popovers類繼承自UIPopoverPresentationControllerDelegate,但似乎都無法正常工作。

如果與問題有關,則在iPhone上。

我找到了答案。 在LogInScreen的ViewDidLoad()中,將委托設置為:

self.popoverPresentationController.delegate = getPopovers()

getPopovers()函數是用於檢索在代碼其他位置創建的Popover對象的函數。 現在,在我的Popovers類中,我可以遵循UIPopoverPresentationControllerDelegate並使用這些方法。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM