iOS: Why do I have white, rounded corners on my modal view?

前端 未结 9 747
悲哀的现实
悲哀的现实 2021-01-02 00:37

I have a modal view popping up in my iPad app and for some reason it has white, rounded corners.

It might be worth noting I built this model view in my storyboard, n

9条回答
  •  迷失自我
    2021-01-02 00:52

    If you are using a popoverpresentationcontroller to show your view controller, try setting the backgroundcolor of the popoverpresentationcontroller to clear

        examplePopUpController = exampleViewController.popoverPresentationController!
        examplePopUpController?.backgroundColor = UIColor.clear
    

提交回复
热议问题