how to center a popoverview in swift

前端 未结 10 1736
终归单人心
终归单人心 2020-12-04 16:42

I have the following code to show a popoverview (dialog) without an arrow, which works fine. The only problem is, that the dialog is shown in the top left (IPad). I would li

10条回答
  •  清歌不尽
    2020-12-04 17:19

    Add the below mentioned line of code to make it centre.

    popoverController.popoverPresentationController?.sourceView = view
    
    popoverController.popoverPresentationController?.sourceRect = view.bounds
    

提交回复
热议问题