自定义图形不显示在今日扩展中

时间:2015-11-30 15:41:02

标签: swift swift2 today-extension

我在今天的扩展中取得了进展。我为它创建了额外的类。我可以在IBDesignable的帮助下在故事板中看到它。但是圈子在今天的真实设备(iPhone 5s,iPad 3)或模拟器上没有出现。我该如何解决?

    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)
    }

}

enter image description here enter image description here

更新

我尝试在drawRect中编写代码但是我得到了相同的结果

 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 个答案:

答案 0 :(得分:0)

我写了以下代码,它适用于我

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