1

我有两种看法。如何通过旋转在它们之间转换?我想旋转第一个视图以获得第二个视图...谢谢。

我尝试使用 [UIView transitionFromView 但它没有旋转参数。

4

1 回答 1

0

这可能是你所期待的。但是,并不像您预期​​的那样,因为它不使用过渡动画来简单地添加或删除子视图。

UIView *view1 = [[UIView alloc] initWithFrame:CGRectMake(60, 140, 200, 200)];
view1.backgroundColor = [UIColor greenColor];
[self.view addSubview:view1];    
UIView *view2 = [[UIView alloc] initWithFrame:CGRectMake(60, 140, 200, 200)];
view2.backgroundColor = [UIColor redColor];
  [self.view addSubview:view2];
view2.alpha = 0;
[UIView transitionWithView:view1 duration:2.0 options:UIViewAnimationOptionCurveEaseInOut animations:^{
    view1.transform = CGAffineTransformMakeRotation(M_PI/2);
} completion:^(BOOL com){
    view2.alpha = 1;
    [view1 removeFromSuperview];
}];
于 2013-01-20T17:19:20.853 回答