如何在iOS 9 swift中正确呈现popover ArrowDirections

时间:2015-10-22 18:43:17

标签: ios xcode swift popover

我一直试图找出解决问题的方法。

在这一行popover.permittedArrowDirections = ( .Up | .Down )它说“没有更多上下文,表达的类型是不公正的。”

以下是代码示例:

if let popover = alert.popoverPresentationController
        {
        popover.sourceView = imageView
        popover.sourceRect = imageView.bounds
        popover.permittedArrowDirections = ( .Up | .Down )
        }

1 个答案:

答案 0 :(得分:5)

请使用以下代码:

popover.permittedArrowDirections = [ .Up, .Down ]