iPhone:方向问题

发布于 2024-11-10 15:17:19 字数 267 浏览 0 评论 0原文

我从互联网上得到了一个示例应用程序。我试图改变它的方向。

为了改变方向,我编写了以下代码:

   - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
    {
    return YES;
    } 

并且还对 xib 的自动调整大小进行了更改。

但它仍然不起作用。我应该怎么办 ?

I got a sample app from internet. In which I am trying to change it's Orientation.

For changing the orientation I have write following coding :

   - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
    {
    return YES;
    } 

And also made changes in xib's Auto-sizing.

But still its not working. What should I do ?

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

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

发布评论

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

评论(2

伊面 2024-11-17 15:17:19

这应该可行,但是如果您正在编写使用 TabBarController 的应用程序,则必须确保所有视图控制器从此方法返回 YES(对于某些方向,替代方案可能是 YES)。

This should work, however if you are writing an application that uses a TabBarController you have to ensure that all viewcontrollers return YES from this method (alternative could be YES for some orientations).

酒中人 2024-11-17 15:17:19

在 info.plist 中添加 UISupportedInterfaceOrientations 并在其中添加所有四个方向,例如 UIInterfaceOrientationPortrait、UIInterfaceOrientationPortraitUpsideDown、UIInterfaceOrientationLandscapeLeft、UIInterfaceOrientationLandscapeRight 并启用所有四个方向。

Add UISupportedInterfaceOrientations in your info.plist and within that add all the four orientations like UIInterfaceOrientationPortrait, UIInterfaceOrientationPortraitUpsideDown, UIInterfaceOrientationLandscapeLeft, UIInterfaceOrientationLandscapeRight and make all the four enabled.

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