oc 画一个圆弧_ios画圆弧 | 学步园

本文介绍了如何使用Objective-C(OC)在iOS中画一个动态的圆弧,展示进度效果。通过创建自定义UIView子类`timer`,并利用Core Graphics API在`drawRect:`方法中绘制扇形,实现从0到指定角度的圆弧填充,从而展示进度。代码包括了设置填充颜色、画笔颜色、线条宽度以及扇形参数等关键步骤。
摘要由CSDN通过智能技术生成

首先看一下效果:

我定义了一个timer类,通过调用它来实现这样的效果。下面来看代码:

// timer.h

#import

@interface timer : UIView

- (id)initWithFrame:(CGRect)frame arcWidth:(double)width current:(double)current total:(double)total;

@end

// TimeProportion.m

#import "TimeProportion.h"

#define PI 3.14159265358979323846

@implementation TimeProportion

static float arcWidth; //圆弧的宽度

static double pieCapacity; //角度增量值

static inline float radians(double degrees) {

return degrees * PI / 180;

}

- (id)initWithFrame:(CGRect)frame arcWidth:(double)width current:(double)current total:(double)total

{

self = [super initWithFrame:frame];

if (self) {

arcWidth=width;

pieCapacity=360*current/total;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值