UIBezierPath与CAShapeLayer结合画扇形

/*让半径等于期望半径的一半 lineWidth等于期望半径 就可以画圆*/

 

可以看出layer的走势是从圆边的中间一半在圆外 一半在圆内 因此让半径等于期望半径的一半 lineWidth等于期望半

- (void)viewDidLoad {
    [super viewDidLoad];
   
    for (NSInteger i=0; i<5; i++) {
        [self itemViewWithOne:72*i*M_PI/180.0 two:72*(i+1)*M_PI/180.0];
    }
}
- (UIView *)bgView
{
    if (!_bgView) {
        _bgView = [[UIView alloc] init];
        _bgView.backgroundColor = [UIColor grayColor];
        _bgView.bounds = CGRectMake(0, 0, 100, 100);
        _bgView.center = self.view.center;
        [self.view addSubview:_bgView];
        
    }
    return _bgView;
}
- (void)itemViewWithOne:(CGFloat)starAngle two:(CGFloat)endAngle
{
    
    
    /*让半径等于期望半径的一半  lineWidth等于期望半径 就可以画圆*/
    
    CAShapeLayer *layer = [CAShapeLayer layer];
    
    UIBezierPath *bezierPath = [UIBezierPath bezierPath];
    [bezierPath addArcWithCenter:CGPointMake(50,50) radius:25 startAngle:starAngle endAngle:endAngle clockwise:YES];
    
    layer.path = bezierPath.CGPath;
//    bezierPath.lineCapStyle = kCGLineCapButt;

    
    layer.lineWidth = 50;
    UIColor *color = [UIColor colorWithRed:arc4random()%256/255.0 green:arc4random()%256/255.0 blue:arc4random()%256/255.0 alpha:1];
//    UIColor *color1 = [UIColor colorWithRed:arc4random()%256/255.0 green:arc4random()%256/255.0 blue:arc4random()%256/255.0 alpha:1];

    
    layer.strokeColor = color.CGColor;
    // 最好 为clearColor 设置颜色是方便观察
    layer.fillColor = [UIColor yellowColor].CGColor;

    //默认
    layer.lineCap = kCALineCapButt;
    [self.bgView.layer addSublayer:layer];
    
    CABasicAnimation *basic = [CABasicAnimation animationWithKeyPath:@"strokeEnd"];
    basic.duration = 1.1;
    basic.fromValue = @(0.1f);
    basic.toValue = @(1.0f);
    [layer addAnimation:basic forKey:@"basic"];
    
}

结果如下:

 

转载于:https://www.cnblogs.com/dlwj/p/5974069.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值