Reputation: 11257
What is the syntax to set multiple arrow directions for a UIPopoverController in Swift?
Something like this:
popoverController.permittedArrowDirections = .Up | .Down
Upvotes: 17
Views: 3111
Reputation: 14381
popoverController.permittedArrowDirections = [.up, .down]
Upvotes: 35