gpt4 book ai didi

iphone - 如何在简单的 View iPhone 应用程序上制作 View 交换动画?

转载 作者:行者123 更新时间:2023-12-03 19:32:53 25 4
gpt4 key购买 nike

有一个简单的 iPhone 应用程序,在一个 xib 中包含一个 UIViewController 和两个 View 。

第一个 View 非常简单,带有一个按钮,按下按钮后,通过在 Controller 上设置 View 属性来加载第二个更复杂的 View 。

我想要的是动画 View 交换(翻转 View )。

我见过的示例都需要有多个 View Controller 并构建层次结构,但在这种情况下这有点矫枉过正,有什么建议吗?

最佳答案

确保为 View Controller 中的两个 View 声明 IBOutlet 我假设在您的 xib 中您有一个占据整个屏幕的“容器 View ”,以及添加到此容器中的两个大小相同的 View ( “翻转”的每一侧各一个):

//Inside your .h:
IBOutlet UIView *firstView;
IBOutlet UIView *secondView;

确保在初始加载时显示第一个 View :

-(void) viewDidLoad {
NSAssert(firstView && seconView, @"Whoops: Are first View and Second View Wired in IB?");
[self.view addSubview: firstView]; //Lets make sure that the first view is shown
[secondView removeFromSuperview]; //Lets make sure that the second View is not shown at first
}

然后你可以像这样连接一个按钮,确保按钮在IB中连接到这个方法:

-(IBAction) flipButtonPressed:(id) sender {
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.5];
if ([firstView superview]) {
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.view cache:YES];
[firstView removeFromSuperview];
[self.view addSubview:secondView];
}
else if ([secondView superview]) {
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:self.view cache:YES];
[secondView removeFromSuperview];
[self.view addSubview:firstView];
}
[UIView commitAnimations];
}

关于iphone - 如何在简单的 View iPhone 应用程序上制作 View 交换动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/983598/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com