Can I remove the arrow in the popover view?

后端 未结 7 1495
我寻月下人不归
我寻月下人不归 2021-02-09 12:13

I am asked to removed the arrow of the popover view.

  1. Is that violating human interface guidelines ?
  2. Is it wise to show a popover inside another popover ?<
7条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-09 12:49

    Just to add some sugar and Swifty the code :

    Extension:

    extension UIPopoverArrowDirection {
        static var none: UIPopoverArrowDirection { UIPopoverArrowDirection(rawValue: 0) }
    }
    

    Usage:

    popoverMenuViewController?.permittedArrowDirections = .none
    

    you can change the variable's name to fits your needs.

提交回复
热议问题