在 iPhone 上将方向设置为纵向

发布于 2024-09-11 03:16:41 字数 134 浏览 4 评论 0原文

我有一个应用程序,其中包含一个登录名、3 个表和一个图像。

您可以将图像旋转为横向模式,但我想要做的是,当按下“后退”按钮并且应用程序返回到上一个屏幕时,我的应用程序会自动旋转以提供纵向视图。

有什么办法可以做到这一点吗?

I have an application that consists of a login, 3 tables, and then an image.

You can rotate the image to landscape mode but what I want to be able to do is when the 'back' button is pushed and the app returns to the previous screen, I was the app to automatically rotate to give a portrait view.

Is there any way of doing this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

我不会写诗 2024-09-18 03:16:41

对于以前的控制器:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
if (UIInterfaceOrientationIsPortrait(toInterfaceOrientation)) {
    return YES;
}
return NO;}

For previous controller:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
if (UIInterfaceOrientationIsPortrait(toInterfaceOrientation)) {
    return YES;
}
return NO;}
堇年纸鸢 2024-09-18 03:16:41

如果以前的视图控制器仅支持纵向(请参阅shouldAutorotateToInterfaceOrientation:),那么它应该自动旋转。

如果以前的视图控制器支持横向,但您希望它旋转为纵向(如果它最初是纵向的),您可以通过更改导航回来时 shouldAutorotateToInterfaceOrientation: 返回的内容来强制它。我不会推荐这个;它的用户界面不一致(并且弄清楚导航正在发生的情况有点乏味)。

有多种方法可以设置视图控制器界面方向(-[UIDevice setOrientation:] 将尝试触发自动旋转),但随后您就会进入私有 API 领域并可能遭到拒绝。

If the previous view controller only supports portrait (see shouldAutorotateToInterfaceOrientation:) then it should automatically rotate.

If the previous view controller supports landscape but you want it to rotate to portrait if it was originally in portrait, you can probably force it by changing what shouldAutorotateToInterfaceOrientation: returns when navigating back. I wouldn't recommend this; it's inconsistent UI (and it's a bit tedious to figure out what navigation is going on).

There are various ways to set the view controller interface orientation (-[UIDevice setOrientation:] will attempt to trigger an autorotation), but then you're into the realm of private APIs and potential rejection.

红尘作伴 2024-09-18 03:16:41

在表视图控制器中覆盖 shouldAutorotateToInterfaceOrientation: 并仅返回您想要的方向。

这实际上可能不会切换回方向,因此如果仅此方法不起作用,您可能必须在表视图控制器的 中的 UIApplication 上调用 setStatusBarOrientation:animated: viewWillAppear:viewDidAppear: 方法。

Override shouldAutorotateToInterfaceOrientation: in your table view controller and only return the orientation you want.

This might not actually switch back the orientation, so if this alone doesn't work you might have to call setStatusBarOrientation:animated: on UIApplication in your table view controller's viewWillAppear: or viewDidAppear: methods.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文