我已按照以下方式自定义了一个创建UIPopoverBackgroundView
子类的Popover:
class CustomPopoverBackgroundView: UIPopoverBackgroundView {
override var arrowOffset: CGFloat {
get{
return self.arrowOffset
}
set{
}
}
override var arrowDirection: UIPopoverArrowDirection {
get {
return UIPopoverArrowDirection.Up
}
set {
}
}
override init(frame: CGRect) {
super.init(frame: frame)
backgroundColor = UIColor(red: 0.19, green: 0.19, blue: 0.19, alpha: 1.0)
var arrowView = UIImageView(image: UIImage(named: "12_24_pop_black"))
arrowView.frame = CGRect(x: 17.0, y: -11.0, width: 24.0, height: 12.0)
self.addSubview(arrowView)
}
required init(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
override class func wantsDefaultContentAppearance() -> Bool {
return false
}
override class func contentViewInsets() -> UIEdgeInsets{
return UIEdgeInsets(top: 0.0, left: 0.0, bottom: 0.0, right: 0.0)
}
override class func arrowHeight() -> CGFloat {
return 0.0
}
override class func arrowBase() -> CGFloat{
return 24.0
}
}
我这样做主要是因为我想创建一个没有圆形边框的弹出框,默认情况下是Apple提供的。
问题是,在Popover中我有一个灰色的View
,我不知道为什么ViewController
没有完全展开,我可以看到边框我在上面设置的代码背景颜色(黑色)。
像这张Popover的照片:
我知道您可以为Popover加载边框,但在我的情况下,我会在某些情况下更改View的背景颜色。
我想要做的是展开显示为Popover的ViewController
以避免圆角,或者我不知道可能存在更好的解决方案。
怎么能解决这个问题?
提前致谢
答案 0 :(得分:4)
您可以通过在Popover控制器中覆盖de following方法来解决此问题
override func viewWillAppear(animated: Bool)
{
super.viewWillAppear(animated)
self.view.superview?.layer.cornerRadius = 0
}