Custom figure doesn't display in Today Extension

南楼画角 提交于 2020-01-07 03:54:36

问题


I make progress circle in today extension. I create additional class for it. I can see it in storyboard with help of IBDesignable. But circle doesn't appear in today extension on real device ( iPhone 5s, iPad 3) or simulator. How can I fix it?

    import UIKit

@IBDesignable
class CPUView: UIView {

    // MARK: - colors
    @IBInspectable var firstColor: UIColor = UIColor.blackColor()
    @IBInspectable var secondColor: UIColor = UIColor.greenColor()
    @IBInspectable var thirdColor: UIColor = UIColor.yellowColor()

    // Only override drawRect: if you perform custom drawing.
    // An empty implementation adversely affects performance during animation.
    override func drawRect(rect: CGRect) {
        // Drawing code
        self.addCircle(10, capRadius: 0.0)
    }

    func addOval(lineWidth: CGFloat, path: CGPath, strokeColor: UIColor, fillColor: UIColor, strokeStart: CGFloat, strokeEnd: CGFloat) {
        let shape = CAShapeLayer()
        shape.lineWidth = lineWidth
        shape.path = path
        shape.strokeColor = strokeColor.CGColor
        shape.fillColor = fillColor.CGColor
        shape.strokeStart = strokeStart
        shape.strokeEnd = strokeEnd
        layer.addSublayer(shape)
    }

    func addCircle(arcRadius: CGFloat, capRadius: CGFloat) {
        let X = CGRectGetMidX(self.bounds)
        let Y = CGRectGetMidY(self.bounds)

        let firstPathCircle = UIBezierPath(ovalInRect: CGRectMake(X - arcRadius/2, Y - arcRadius/2, arcRadius, arcRadius)).CGPath

        self.addOval(0.1, path: firstPathCircle, strokeColor: UIColor.redColor(), fillColor: UIColor.yellowColor(), strokeStart: 0.0, strokeEnd: 0.5)
    }

}

UPDATE

I tried to write the code in drawRect but I got the same result

 override func drawRect(rect: CGRect) {
    // Drawing code
    let x = CGRectGetMidX(self.bounds)
    let y = CGRectGetMidY(self.bounds)
    let radius = CGFloat()

    let path = UIBezierPath(ovalInRect: CGRectMake(x - radius/2, y - radius, 100, 100)).CGPath

    let shape = CAShapeLayer()
    shape.lineWidth = 0.0
    shape.fillColor = UIColor.greenColor().CGColor
    shape.path = path
    layer.addSublayer(shape)
}

回答1:


I wrote the following code and it works for me

override func viewDidLoad() {
        super.viewDidLoad()
        self.preferredContentSize = CGSize(width: self.view.frame.width, height: 200.0)
    }


来源:https://stackoverflow.com/questions/34002332/custom-figure-doesnt-display-in-today-extension

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!