gpt4 book ai didi

iphone - 仅允许 UITabViewController 中的一个选项卡将方向更改为横向

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:49:49 25 4
gpt4 key购买 nike

这可能吗?我怎样才能做到这一点?

最佳答案

Not possible according to Apple Docs.

possible 这个词可能需要一个星号。看起来 Apple 显然没有预料(或希望)您这样做。但是,根据您的要求,可能有解决方法。

免责声明:这是一种黑客攻击。我并不是说这是一个好的 UI,只是想向 Eli 展示什么是可能的。

我构建了一个示例,从用于构建选项卡式应用程序 的 Xcode 模板开始。它有两个 View Controller :FirstViewControllerSecondViewController。我决定将 FirstViewController 设为横向 View 。在 Interface Builder(Xcode UI 设计模式)中,我将 FirstViewController 的 View 方向设置为横向,并将其大小设置为 480 宽 x 251 高(我在这里假设是 iPhone/iPod)。

解决方案

现在,似乎有必要让所有标签栏的 View Controller 声明支持自动旋转为纵向和横向。例如:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}

所以,我的两个 View Controller 都有相同的代码。但是,我在 FirstViewController 中所做的也是覆盖 willAnimateToInterfaceOrientation:duration: 并且基本上撤消 UIViewController 基础结构确实如此,只是为了这个只有风景的 View Controller 。

FirstViewController.m:

- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration {
[super willAnimateRotationToInterfaceOrientation:interfaceOrientation duration:duration];

CGAffineTransform viewRotation;
CGRect frame;

if (UIInterfaceOrientationIsLandscape(interfaceOrientation)) {
viewRotation = CGAffineTransformIdentity;
// TODO: change to dynamically account for status bar and tab bar height
frame = CGRectMake(0, 0, 480, 320 - 20 - 49);
} else {
viewRotation = CGAffineTransformMakeRotation(M_PI_2);
// TODO: change to dynamically account for status bar and tab bar height
frame = CGRectMake(0, 0, 320, 480 - 20 - 49);
}

// undo the rotation that UIViewController wants to do, for this view heirarchy
[UIView beginAnimations:@"unrotation" context: NULL];
[UIView setAnimationDuration: duration];

self.view.transform = viewRotation;
self.view.frame = frame;

[UIView commitAnimations];
}

您得到的是标签栏将始终随设备旋转。这可能是一项要求,让您的双方向 View (例如 SecondViewController)进行自动旋转。但是,FirstViewController 的实际 View 内容现在不会旋转。无论用户如何转动设备,它都会保持横向。那么,也许这对您来说已经足够好了?

另请注意:

1) 我更改了应用程序的信息 plist 文件以将初始方向设置为横向(因为我的FirstViewController 是横向方向):

<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIInterfaceOrientation</key>
<string>UIInterfaceOrientationLandscapeRight</string>

2) 在 FirstViewController.xib 中,我将主/父 UIView 设置为 not Autoresize Subviews。根据您的 View 层次结构,您可能还想在其他 subview 中更改此属性。您可以尝试该设置。

现在,随着状态栏和标签栏的旋转,横向 View 的可用大小确实发生了一点变化。因此,您可能需要稍微调整一下布局。但是,基本上,无论用户如何握住他们的设备,您仍然可以获得 View 来显示横向内容。

结果

Watch Youtube demo of running app

关于iphone - 仅允许 UITabViewController 中的一个选项卡将方向更改为横向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10889728/

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