ios 从指定位置到指定位置的动画
PHP中文网
PHP中文网 2017-04-18 09:50:49
0
1
465

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

PHP中文网
PHP中文网

认证0级讲师

répondre à tous(1)
Peter_Zhu

Des animations UIView simples peuvent être utilisées.

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) {
    // 动画完成后的回调
}];
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal