藍懿教育九月二十七日記錄

來源:互聯網
上載者:User

標籤:藍懿教育 劉國斌 ios 培訓

將VIew移動做成動畫效果    這種動畫效果沒有中間的位移

 

可以添加動畫的View屬性center,frame,alpha,transform , backgroundColor

 

//繼續做消失的動畫

        [UIView animateWithDuration:1 animations:^{

           

           iv.alpha = 0;

           

       } completion:^(BOOL finished) {

            //完成動畫後執行 可以繼續添加

            [iv removeFromSuperview];

       }];

       

 

 

 

 

- (void)viewDidLoad {

    [super viewDidLoad];

    // Do anyadditional setup after loading the view, typically from a nib.

    [NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(addSnow) userInfo:nil repeats:YES];

}

-(void)addSnow{

    int size = arc4random()%10+10;

    UIImageView *iv = [[UIImageViewalloc]initWithFrame:CGRectMake(arc4random()%(320-size), -size, size, size)];

    iv.image = [UIImageimageNamed:@"snow"];

    [self.view addSubview:iv];

    

    int time = arc4random()%4+1;

    //添加移動動畫

    [UIView animateWithDuration:time animations:^{

        //移動的終點位置

       iv.center = CGPointMake(iv.center.x, 568);

        //圖形改變終點形狀

        iv.transform = CGAffineTransformRotate(iv.transform, (arc4random()%360)/180.0*M_PI);

    } completion:^(BOOLfinished) {

       

       

        //繼續做雪花消失的動畫

        [UIView animateWithDuration:1 animations:^{

           

           iv.alpha = 0;

           

       } completion:^(BOOL finished) {

           

            [iv removeFromSuperview];

       }];

       

       

    }];

    

    

}


藍懿教育九月二十七日記錄

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.