我的 UIViewController 获取它所控制的 View 以完全重建自己,如下所示:
[self.view rebuildYourself:bIsLandscape]; // this line is in the ViewController
View 本身包含以下方法:
-(void)rebuildYourselfBOOL)isLandscape
{
NSArray *viewsToRemove = [self subviews];
for (UIView *v in viewsToRemove) {
[v removeFromSuperview];
}
[self addControls]; // adds lots of views
[self layoutControlsWithOrientation:isLandscape]; // frames the views
}
我想为整个过渡设置动画。我试过这个:
[UIView animateWithDuration:1.0
delay:0.0
options:UIViewAnimationOptionTransitionCurlUp
animations:^{
[self.view rebuildYourself:bIsLandscape];
}
completion:^(BOOL finished){
}];
但是动画忽略了UIViewAnimationOptionTransitionCurlUp的options值,每次都是从左上角流入。
我已经试过了:
[UIView beginAnimations"kkk" context:nil];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];
[UIView setAnimationDuration:1.0];
[self.view rebuildYourself:bIsLandscape];
[UIView commitAnimations];
但在这种情况下,过渡确实可以很好地 curl ,但在过渡完成之前底层 View 是空白的,然后新 View 突然“弹出”到 View 中,这破坏了过渡的效果。
谁能告诉我为 View 完全重建自身的过渡设置动画的正确/最佳方式?
谢谢
制作两个 View 并将旧 View 放在新的重建 View 之上。然后“ curl ”旧 View ,以便显示新 View 并从内存中删除旧 View 。
关于iphone - 为 UIView 更改设置动画,其中 UIView 完全重建,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11032437/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |