[翻译] CKShapeView 支持CAShapeLayer

CKShapeView是一个UIView的子类,支持CAShapeLayer,能够渲染任意CGPath,并且完全可配置和动画化。本文介绍其特性,并提供一个绘制扇形视图的例子。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

CKShapeView 支持CAShapeLayer

https://github.com/conradev/CKShapeView

CKShapeView is a UIView subclass that is backed by a CAShapeLayer.

In other words, it is a view that is capable of rendering an arbitrary CGPath.

It is completely configurable and animatable, so you can have custom drawn views without needing to subclass.

CKShapeView has all of the properties of CAShapeLayer, with the addition of a hitTestUsingPath property that allows you to hit test using the path instead of the view's bounds.

CKShapeView是一个UIView的子类,它支持CAShapeLayer。

换句话说,它是一个view,可以用来渲染CGPath。

我完全配置了它并可以动画化,所以,你可以直接定制这个view而不需要继承至它的子类。

CKShapeView有着CAShapeLayer的所有属性,我添加了一个额外的属性hitTestUsingPath,允许你使用路径来做点击测试而不是这个view的bounds。

 

Example Usage

CKShapeView *pieView = [[CKShapeView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
CGFloat width = CGRectGetWidth(pieView.bounds);
pieView.path = [UIBezierPath bezierPathWithOvalInRect:CGRectInset(pieView.bounds, width/4, width/4)];
pieView.lineWidth = width/2;
pieView.fillColor = nil;
pieView.strokeColor = [UIColor blackColor];
[self.view addSubview:pieView];

UIViewAnimationOptions options = UIViewAnimationOptionAutoreverse | UIViewAnimationOptionRepeat;
[UIView animateWithDuration:1.0f delay:0.0f options:options animations:^{
    pieView.strokeEnd = 0.0f;
} completion:nil];

 

 

 

 

 

 

 

 

 

转载于:https://www.cnblogs.com/YouXianMing/p/3698391.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值