Change UIPopoverView background + arrow color

后端 未结 5 1417
猫巷女王i
猫巷女王i 2021-01-03 18:19

Is there a way to simply change the UIPopoverView background color (including its arrow) on iOS8?

(I did read a couple of articles on customizing \"UIPopove

5条回答
  •  时光说笑
    2021-01-03 18:48

    I found the solution. Subclassing is not necessary anymore with iOS8! The background can be accessed and changed like this from within the tableview -> navigation -> popoverPresentationController

        self.navigationController?.popoverPresentationController?.backgroundColor = UIColor.redColor()
    

    More information about this in WWDC session 2014.

提交回复
热议问题