iOS-利用UIBezierPath和CAAnimation製作路徑動畫

來源:互聯網
上載者:User

繼上篇的心跳動畫,今天實現一個根據心跳路徑實現一個路徑動畫,讓某一視圖沿著路徑進行運動.

核心代碼 1-首先通過 drawRect 繪製心形路徑

- (void)drawRect:(CGRect)rect {    // Drawing code    // 初始化UIBezierPath    UIBezierPath *path = [UIBezierPath bezierPath];    // 首先設定一個起始點    CGPoint startPoint = CGPointMake(rect.size.width/2, 120);    // 以起始點為路徑的起點    [path moveToPoint:startPoint];    // 設定一個終點    CGPoint endPoint = CGPointMake(rect.size.width/2, rect.size.height-40);    // 設定第一個控制點    CGPoint controlPoint1 = CGPointMake(100, 20);    // 設定第二個控制點    CGPoint controlPoint2 = CGPointMake(0, 180);    // 添加三次貝茲路徑    [path addCurveToPoint:endPoint controlPoint1:controlPoint1 controlPoint2:controlPoint2];    // 設定另一個起始點    [path moveToPoint:endPoint];    // 設定第三個控制點    CGPoint controlPoint3 = CGPointMake(rect.size.width-100, 20);    // 設定第四個控制點    CGPoint controlPoint4 = CGPointMake(rect.size.width, 180);    // 添加三次貝茲路徑    [path addCurveToPoint:startPoint controlPoint1:controlPoint4 controlPoint2:controlPoint3];    // 設定線寬    path.lineWidth = 3;    // 設定線斷面類型    path.lineCapStyle = kCGLineCapRound;    // 設定連線類型    path.lineJoinStyle = kCGLineJoinRound;    // 設定畫筆顏色    [[UIColor redColor] set];    [path stroke];}
2-添加心形路徑View到主視圖
    HeartView *heart = [[HeartView alloc] init];    heart.frame = CGRectMake(0, 0, Screen_Width, Screen_Height-Screen_Height);    [self.view addSubview:heart];
3-給動畫視圖(紅色圓形視圖)添加軌跡路徑動畫
    CAKeyframeAnimation *animation = [CAKeyframeAnimation animationWithKeyPath:@"position"];    // 設定動畫的路徑為心形路徑    animation.path = self.path.CGPath;    // 動畫時間間隔    animation.duration = 3.0f;    // 重複次數為最大值    animation.repeatCount = FLT_MAX;    animation.removedOnCompletion = NO;    animation.fillMode = kCAFillModeForwards;    // 將動畫添加到動畫視圖上    [_demoView.layer addAnimation:animation forKey:nil];
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.