弧形轨道动画

UIBezierPath *trackPath = [UIBezierPathbezierPath];

[trackPath moveToPoint:P(0,0)];

// [trackPath addCurveToPoint:P(0, 500)

// controlPoint1:P(0, self.view.frame.size.width/2)

// controlPoint2:P(self.view.frame.size.width, 500)];

[trackPath addQuadCurveToPoint:P(self.frame.size.width,0) controlPoint:P(self.frame.size.width/2,self.frame.size.height-20) ];

CAShapeLayer *racetrack = [CAShapeLayerlayer];

racetrack.path = trackPath.CGPath;

racetrack.strokeColor = [UIColorblackColor].CGColor;

racetrack.fillColor = [UIColorclearColor].CGColor;

racetrack.lineWidth = 30.0;

[self.layeraddSublayer:racetrack];

CAShapeLayer *centerline = [CAShapeLayerlayer];

centerline.path = trackPath.CGPath;

centerline.strokeColor = [UIColorwhiteColor].CGColor;

centerline.fillColor = [UIColorclearColor].CGColor;

centerline.lineWidth = 2.0;

centerline.lineDashPattern = [NSArrayarrayWithObjects:[NSNumber numberWithInt:6], [NSNumbernumberWithInt:2],nil];

[self.layeraddSublayer:centerline];


NSString *str = @"华夏银行跑马灯";

// UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 44.0, 20.0)];

// [label setText:@""];

// [label setTextColor:[UIColor whiteColor]];

// [label setBackgroundColor:[UIColor redColor]];

for (int i=0; i< [strlength]; i++)

{

UIButton *bt = [UIButtonbuttonWithType:UIButtonTypeCustom];

[bt setFrame:CGRectMake(20,0, 200*i, 20)];

[bt setTitle: [strsubstringWithRange:NSMakeRange(i,1)] forState:UIControlStateNormal];

[selfaddSubview:bt];

CAKeyframeAnimation *anim = [CAKeyframeAnimationanimationWithKeyPath:@"position"];

anim.path = trackPath.CGPath;

anim.rotationMode =kCAAnimationRotateAuto;

anim.repeatCount =HUGE_VALF;

anim.duration = 8.0;

[bt.layeraddAnimation:anim forKey:@"race"];

}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值