在我的应用程序中,当我使用UIView动画切换视图时,它没有显示任何内容,视图是黑色但我知道我的方法被调用。我有NSLogged视图,我打印结果并在下面发布。
我的代码如下,但有人看到任何错误吗?
-(void)changeView2ToView3 {
NSLog(@"Before, frame= %@", NSStringFromCGRect(view3.view.frame));
[view2.view.superview addSubview:view3.view];
[view3.view setFrame:CGRectMake(0, kHeight, kWidth, kHeight)];
[UIView animateWithDuration:0.75
animations:^{
[view3.view setFrame:CGRectMake(0, 0, kWidth, kHeight)];
}
completion:^(BOOL finished){
[view2.view removeFromSuperview];
}];
NSLog(@"Before, frame= %@", NSStringFromCGRect(view3.view.frame));
}
kHeight和kWidth是屏幕的高度和宽度,它们永远不会为0或为零。
这也是从控制台打印的内容:
2012-02-02 15:58:30.449 App[27578:707] Before, frame= {{0, 0}, {320, 480}}
2012-02-02 15:58:30.452 App[27578:707] Before, frame= {{0, 0}, {320, 480}}
2012-02-02 15:58:36.234 App[27578:707] Before, frame= {{0, 0}, {320, 480}}
2012-02-02 15:58:36.237 App[27578:707] Before, frame= {{0, 0}, {320, 480}}
谢谢!
答案 0 :(得分:1)
我正在使用我正在开发的应用程序发生类似的事情。我认为你的错是你没有指定高度或宽度,它们都是0?如果我错了,请纠正我。