我是翻转动画从一个视图转到另一个视图并且动画正常工作但是当我在该视图上使用按钮操作时,应用程序正在崩溃。
请帮我解决这个问题。
我的代码是:
Abtsk1 *secondViewController = [[Abtsk1 alloc]
initWithNibName:@"Abtsk1"
bundle:nil];
[UIView beginAnimations:@"flipping view" context:nil];
[UIView setAnimationDuration:1];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown
forView:[[self navigationController] view] cache:YES];
[self.view addSubview:secondViewController.view];
[UIView commitAnimations];
由于 库纳尔