我正面临着一个非常烦人的问题。这里是上下文:我有一个“矩形”视图,它是主视图的子视图。我要做的很简单,当我点击一个按钮时,我希望“矩形”视图在x轴上平移以便消失。然后,我添加了一个新的子视图并对其进行翻译,以取代以前的“矩形”视图。它工作得很好,只是如果我再按一次按钮,动画就会从屏幕上开始,就像CGAffineTransformMakeTranslation没有改变我新的“矩形”视图的框架一样。代码如下:
UIView *rectangleView = [detailView viewWithTag:4]; //the actual frame is (20.0, 30.0, 884.0, 600.0)
[UIView animateWithDuration:0.5 animations:^{
[rectangleView setTransform:CGAffineTransformMakeTranslation(-1000, 0)];
} completion:^(BOOL finished) {
[rectangleView removeFromSuperview];
UIView *otherView = [[UIView alloc] initWithFrame:CGRectMake(1020.0, 30.0, 884.0, 600.0)];
[otherView setBackgroundColor:[UIColor purpleColor]];
[otherView setTag:4];
[detailView addSubview:otherView];
[UIView animateWithDuration:0.5 animations:^{
[otherView setTransform:CGAffineTransformMakeTranslation(-1000, 0)];
} completion:^(BOOL finished) {
[otherView release];
}];
}];
发布于 2011-12-21 13:09:18
在添加第二个视图之后,您已经将其转换设置为等于CGAffineTransformMakeTranslation(-1000, 0)
,并且当您想要删除该视图时,您可以设置完全相同的转换-因此它将不起作用。这里有两个选项:
CGAffineTransformConcat(rectangleView.transform,setTransform:newTransform;
UIView *矩形视图= detailView视图带the:4;//实际帧为(20.0,30.0,884.0,600.0) CGAffineTransform tf =CGAffineTransformMakeTranslation(-600.0,0);[UIView动画带持续时间:0.5动画:^{ rectangleView setCenter:矩形tf);}完成:^(BOOL完成){ rectangleView removeFromSuperview;UIView *其他视图= [UIView alloc :CGRectMake(1020.0,30.0,884.0,600.0)];[otherView setBackgroundColor:UIColor purpleColor];otherView setTag:4;detailView addSubview:其他视图;[UIView animateWithDuration:0.5动画:^{ otherView setCenter: CGPointApplyAffineTransform(otherView.center,tf);}完成:^(BOOL完成){ otherView release;}];}];
发布于 2011-12-21 13:05:47
尝试为center
属性设置动画,而不是使用仿射变换。变换不是相加的,所以你的第二个动画(当你新添加的细节视图被移出屏幕时)实际上根本不会改变视图,因为它已经应用了平移(-1000,0)。
https://stackoverflow.com/questions/8590150
复制