gpt4 book ai didi

iphone - 通过卷页关闭 modalviewcontroller

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

我试图通过卷页来关闭模态视图 Controller 。 curl 工作正常,但我似乎无法显示模态视图 Controller 下的表格 View 。 modalviewcontroller 的图像仍然位于 curl 的页面下方。如果我在动画完成之前关闭 modalviewcontoller,则动画不会显示。这是我的代码:

//hide splash screen
- (void)hideSplash{
[UIView beginAnimations:nil context:nil];
//change to set the time
[UIView setAnimationDuration:2];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:modelView cache:NO];
// do your view swapping here

//[[self modalViewController] dismissModalViewControllerAnimated:NO];

[UIView commitAnimations];
//[self.view sendSubviewToBack:self.view];

}

希望有人能帮忙!干杯尼克

最佳答案

在 iOS4 中:

目前来说,它是这样的:

[containerView addSubview:modelView];
[UIView transitionWithView:containerView
duration:.75
UIViewAnimationOptionTransitionCurlUp
animations:^{}
completion:^(BOOL finished) {
NSLog(@"finished %d", finished);
}];

要关闭,请使用UIViewAnimationOptionTransitionCurlDown

关于iphone - 通过卷页关闭 modalviewcontroller,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2348780/

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