查看向上滑动而不是使用模型视图控制器进行卷曲

时间:2010-04-20 19:10:50

标签: objective-c uiview uiviewcontroller core-animation

    SignView *tempVC = [[SignView alloc] initWithNibName:@"SignView" bundle:Nil];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationTransition: UIViewAnimationTransitionCurlUp forView:self.view cache:YES];
[UIView setAnimationDelay:0.5f];
[UIView setAnimationDuration:2.0f];
[UIView commitAnimations];
[self presentModalViewController:tempVC animated:YES];
[tempVC passDataWithString:button2.titleLabel.text andColor:currentlySelectedColor isNightModeOn:nightMode.on];

视图向上滑动而不是向上滑动。

我做错了什么?

1 个答案:

答案 0 :(得分:1)

要设置模态视图控制器的过渡样式,请设置它的modalTransitionStyle属性。

self.modalTransitionStyle = UIModalTransitionStylePartialCurl;

另请注意,某些过渡样式在模拟器上看起来不正确,但在设备上应该没问题。