如题 从A位置移动到B位置带动画的,怎么写啊?大神们
认证0级讲师
可使用簡單的 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) { // 动画完成后的回调 }];
可使用簡單的 UIView 動畫。