搜尋

首頁  >  問答  >  主體

ios 从指定位置到指定位置的动画

如题 从A位置移动到B位置带动画的,怎么写啊?大神们

PHP中文网PHP中文网2771 天前471

全部回覆(1)我來回復

  • 天蓬老师

    天蓬老师2017-04-18 09:52:49

    可使用簡單的 UIView 動畫。

    UIView *myView = [[UIView alloc] init];
    myView.frame = CGRectMake(0, 0, 50, 50);
    myView.backgroundColor = [UIColor blackColor];
    [self.view addSubview:myView];
    
    [UIView animateWithDuration:2.0 animations:^{
        // 2 秒内向右移动 100, 向下移动100。
        myView.transform = CGAffineTransformMakeTranslation(100, 100);
        
    } completion:^(BOOL finished) {
        // 动画完成后的回调
    }];

    回覆
    0
  • 取消回覆