Pop over doesn't point over the button

前端 未结 3 529
遥遥无期
遥遥无期 2021-02-05 03:49

I have an application that is compatible with both iPhone and iPad layouts. For iPhone layout I have created Action Sheet and Pop over for iPad. The problem is pop over\'s arrow

3条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-05 04:13

    For me worked using the sender and casting as UIView.

    alertController.popoverPresentationController?.sourceView = sender as! UIView
    alertController.popoverPresentationController?.sourceRect = sender.bounds
    
    alertController.popoverPresentationController?.permittedArrowDirections = UIPopoverArrowDirection.Up
    

提交回复
热议问题