Is it possible to present a popover without any sort of arrows pointing somewhere?
In Swift, you can simply do:
popoverPresentationController.permittedArrowDirections = []
Since in another configuration you could have used:
popoverPresentationController.permittedArrowDirections = [.up, .down]