0

我有一个 PopoverPresentationController,它需要有黑色背景,我应用了背景颜色,但箭头没有蒙皮或着色,附加的是图像的外观。POPController 里面有 tableview。

在此处输入图像描述

4

1 回答 1

0

我们无法移除弹出框控制器的箭头。如果您不需要箭头,则需要自定义自己的视图。如果要更改背景颜色

popOver.popoverPresentationController.sourceRect = btn.bounds;
popOver.popoverPresentationController.sourceView = btn;
popOver.popoverPresentationController.backgroundColor = [UIColor redColor];
于 2017-12-14T11:54:11.797 回答