gpt4 book ai didi

iphone - 翻转由 UINavigationController 管理的 UIViewController 会隐藏导航栏

转载 作者:行者123 更新时间:2023-12-03 21:10:46 26 4
gpt4 key购买 nike

我已经在 UINavigationContoller 上降低了 2 个级别,并且已经推送了一些 View 。现在,我正在查看其中一个推送 View Controller 内的图像,当我点击导航栏中的信息按钮时,我希望 subview 翻转,将导航栏保留在原位。如何让 subview (被推送的 View )翻转?现在,导航栏也会翻转并阻止我导航回堆栈。

-(void)showImageInfo
{
self.imgInfoViewController = [[ImageInfoViewController alloc] initWithNibName:@"ImageInfoViewController" bundle:nil];

[self.imgInfoViewController setModalTransitionStyle:UIModalTransitionStyleFlipHorizontal];

[self.navigationController presentModalViewController:self.imgInfoViewController animated:YES];

}

最佳答案

UICatalog 示例中的代码...我认为它会满足您的需求。基本上你必须做更多的编码才能获得翻转行为。

http://developer.apple.com/iphone/library/samplecode/UICatalog/Listings/TransitionViewController_m.html#//apple_ref/doc/uid/DTS40007710-TransitionViewController_m-DontLinkElementID_34

  - (IBAction)flipAction:(id)sender
{
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:kTransitionDuration];

[UIView setAnimationTransition:([self.mainView superview] ? UIViewAnimationTransitionFlipFromLeft :UIViewAnimationTransitionFlipFromRight) forView:self.containerView cache:YES];
if ([flipToView superview])
{
[self.flipToView removeFromSuperview];
[self.containerView addSubview:mainView];
}
else
{
[self.mainView removeFromSuperview];
[self.containerView addSubview:flipToView];
}

[UIView commitAnimations];
}

关于iphone - 翻转由 UINavigationController 管理的 UIViewController 会隐藏导航栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3432996/

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