popoverpresentviewcontroller mit Rechteckecke und ohne Pfeil

Ich möchte ein Popover ohne abgerundete Ecken und ohne Pfeil.

Ich habe den folgenden Code geschrieben, aber es hat nicht funktioniert:

// SerachPopViewController.swift

    //MARK: InitCoder
required init?(coder aDecoder: NSCoder) {
    super.init(coder: aDecoder)
    //popover settings
    //popoverPresentationController!.permittedArrowDirections = .Any
    modalPresentationStyle = .Popover
    popoverPresentationController!.delegate = self
    //permittedArrowDirections = UIPopoverArrowDirection(rawValue: 0)
    self.preferredContentSize = CGSize(width:340,height:380)
}

// QueryTableViewController.swift

    @IBAction func searchFilter(sender: AnyObject) {

    let searchPopController = storyboard!.instantiateViewControllerWithIdentifier("SerachPopViewController") as! SerachPopViewController
    searchPopController.serachPopDelegate = self
    searchPopController.modalPresentationStyle = .Popover
    searchPopController.preferredContentSize = CGSize(width:340,height:380)

    let popoverPresentationController = searchPopController.popoverPresentationController

    popoverPresentationController!.sourceView = self.view;
    popoverPresentationController!.sourceRect = CGRectMake(CGRectGetMidX(self.view.bounds), CGRectGetMidY(self.view.bounds),0,0)
    popoverPresentationController!.permittedArrowDirections = UIPopoverArrowDirection();
    self.presentViewController(searchPopController, animated: true, completion: nil)
}

Ich kann die Popover-Ansicht mit Pfeil und abgerundetem Pfeil anzeigen.

Bitte hilf mir zu erreichen:

Popup-Ansicht mit rechteckiger Eckepopup Ansicht ohne Richtungspfeile

Antworten auf die Frage(12)

Ihre Antwort auf die Frage