我需要将 UIPopover 背景颜色设置为 clearColor 。但是所有颜色的其余部分都可以使用以下代码正常工作:
myPopover.backgroundColor = [UIColor greenColor];
但是当我设置 clearColor 时,有一个白色的背景而不是透明的。
谁能帮我。提前致谢!
Best Answer-推荐答案 strong>
如果您说的是 UIPopoverController,那么尝试将背景颜色设置为其内容 View Controller 的 View 。
myPopover.contentViewController.view.backgroundColor = [UIColor clearColor];
另外,请查看 this SO post关于自定义弹出框背景。
关于ios - 如何为 UIPopover View 设置 clearColor?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/26481839/
|