iOS - 在视图控制器中绘制甜甜圈

时间:2016-11-11 20:12:20

标签: ios objective-c iphone core-graphics

这很简单,但我无法弄清楚我做错了什么。

我有一个视图控制器,中间有一个视图。我想画下面的圆圈:

enter image description here

我遇到的主要问题是,我无法在视图中显示任何内容。我现在只想画一条线,但显然缺少一些关键。这是我的代码:

@interface ViewController ()
@property (weak, nonatomic) IBOutlet UIView *centerView;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    [[UIColor brownColor] set];
    CGContextRef currentContext =UIGraphicsGetCurrentContext();
    CGContextSetLineWidth(currentContext,5.0f);
    CGContextMoveToPoint(currentContext,50.0f, 10.0f);
    CGContextAddLineToPoint(currentContext,100.0f, 200.0f);
    CGContextStrokePath(currentContext);

}

1 个答案:

答案 0 :(得分:5)

你可以使用CAShapeLayer。这是一个操场,说明了如何做到这一点。作为额外的奖励,我投入了动画。

    import UIKit
    import PlaygroundSupport

    class AnimatedRingView: UIView {
        private static let animationDuration = CFTimeInterval(2)
        private let π = CGFloat.pi
        private let startAngle = 1.5 * CGFloat.pi
        private let strokeWidth = CGFloat(8)
        var proportion = CGFloat(0.5) {
            didSet {
                setNeedsLayout()
            }
        }

        private lazy var circleLayer: CAShapeLayer = {
            let circleLayer = CAShapeLayer()
            circleLayer.strokeColor = UIColor.gray.cgColor
            circleLayer.fillColor = UIColor.clear.cgColor
            circleLayer.lineWidth = self.strokeWidth
            self.layer.addSublayer(circleLayer)
            return circleLayer
        }()

        private lazy var ringlayer: CAShapeLayer = {
            let ringlayer = CAShapeLayer()
            ringlayer.fillColor = UIColor.clear.cgColor
            ringlayer.strokeColor = self.tintColor.cgColor
            ringlayer.lineCap = kCALineCapRound
            ringlayer.lineWidth = self.strokeWidth
            self.layer.addSublayer(ringlayer)
            return ringlayer
        }()

        override func layoutSubviews() {
            super.layoutSubviews()
            let radius = (min(frame.size.width, frame.size.height) - strokeWidth - 2)/2
            let circlePath = UIBezierPath(arcCenter: center, radius: radius, startAngle: startAngle, endAngle: startAngle + 2 * π, clockwise: true)
            circleLayer.path = circlePath.cgPath
            ringlayer.path = circlePath.cgPath
            ringlayer.strokeEnd = proportion


        }

        func animateRing(From startProportion: CGFloat, To endProportion: CGFloat, Duration duration: CFTimeInterval = animationDuration) {
            let animation = CABasicAnimation(keyPath: "strokeEnd")
            animation.duration = duration
            animation.fromValue = startProportion
            animation.toValue = endProportion
            animation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseOut)
            ringlayer.strokeEnd = endProportion
            ringlayer.strokeStart = startProportion
            ringlayer.add(animation, forKey: "animateRing")
        }

    }

    let v = AnimatedRingView(frame: CGRect(x: 0, y: 0, width: 100, height: 100))
    PlaygroundPage.current.liveView = v
    v.animateRing(From: 0, To: 0.5)