<legend id='4kvRk'><style id='4kvRk'><dir id='4kvRk'><q id='4kvRk'></q></dir></style></legend>

    1. <tfoot id='4kvRk'></tfoot>

      <small id='4kvRk'></small><noframes id='4kvRk'>

      <i id='4kvRk'><tr id='4kvRk'><dt id='4kvRk'><q id='4kvRk'><span id='4kvRk'><b id='4kvRk'><form id='4kvRk'><ins id='4kvRk'></ins><ul id='4kvRk'></ul><sub id='4kvRk'></sub></form><legend id='4kvRk'></legend><bdo id='4kvRk'><pre id='4kvRk'><center id='4kvRk'></center></pre></bdo></b><th id='4kvRk'></th></span></q></dt></tr></i><div id='4kvRk'><tfoot id='4kvRk'></tfoot><dl id='4kvRk'><fieldset id='4kvRk'></fieldset></dl></div>
        <bdo id='4kvRk'></bdo><ul id='4kvRk'></ul>

      iOS 6 中视图控制器的不正确旋转

      时间:2023-05-18
        <tbody id='6nyZQ'></tbody>

        • <bdo id='6nyZQ'></bdo><ul id='6nyZQ'></ul>

            <i id='6nyZQ'><tr id='6nyZQ'><dt id='6nyZQ'><q id='6nyZQ'><span id='6nyZQ'><b id='6nyZQ'><form id='6nyZQ'><ins id='6nyZQ'></ins><ul id='6nyZQ'></ul><sub id='6nyZQ'></sub></form><legend id='6nyZQ'></legend><bdo id='6nyZQ'><pre id='6nyZQ'><center id='6nyZQ'></center></pre></bdo></b><th id='6nyZQ'></th></span></q></dt></tr></i><div id='6nyZQ'><tfoot id='6nyZQ'></tfoot><dl id='6nyZQ'><fieldset id='6nyZQ'></fieldset></dl></div>

            <tfoot id='6nyZQ'></tfoot>
          1. <legend id='6nyZQ'><style id='6nyZQ'><dir id='6nyZQ'><q id='6nyZQ'></q></dir></style></legend>
          2. <small id='6nyZQ'></small><noframes id='6nyZQ'>

                本文介绍了iOS 6 中视图控制器的不正确旋转的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                限时送ChatGPT账号..

                在我的应用程序中,我一直在使用现已弃用的 shouldAutoRotateToFace 方法.现在,当使用 iOS 6 模拟器时,我的所有子视图都旋转到纵向,而设备处于横向.有谁知道可能导致这种情况的原因?我已经尝试用supportedOrientations方法(或者你现在应该使用的任何方法)替换我的主视图控制器中的自动旋转.

                In my app I've been using the now deprecated shouldAutoRotateToFace method. Now when using the iOS 6 simulator, all of my subviews are rotated to portrait orientation while the device is in landscape. Does anyone have any idea what could cause this? I've already tried replacing should autorotate in my main view controller with the supportedOrientations method (or whatever it is that you're now supposed to use instead).

                推荐答案

                如果可以登录苹果开发论坛,看看这个帖子.

                If you can log in to the Apple dev forums, check out this thread.

                基本上,这是对我有帮助的信息:

                Basically, this is the information that helped me:

                1. 我必须在

                - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
                

                2.对于视图控制器

                - (BOOL)shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation)interfaceOrientation
                

                没有只返回YES,我必须添加

                - (NSUInteger)supportedInterfaceOrientations
                

                返回相同的值

                3. 已添加

                - (BOOL)shouldAutorotate {
                    return YES;
                }
                
                - (NSUInteger)supportedInterfaceOrientations {
                    return (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft |
                            UIInterfaceOrientationMaskLandscapeRight | UIInterfaceOrientationMaskPortraitUpsideDown);
                }
                

                到 mainViewController.m

                to mainViewController.m

                4.已添加

                - (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
                    return (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft |
                            UIInterfaceOrientationMaskLandscapeRight | UIInterfaceOrientationMaskPortraitUpsideDown);
                }
                

                到 appDelegate.m(我相信这是可选的,用于设置默认值,以防它们未在应用程序的 Info.plist 文件或单个视图控制器中指定)

                to appDelegate.m (I believe this is optional, for setting default values in case they're not specified in the app's Info.plist file, or in individual view controllers)



                因为我希望我的代码向后兼容回 3.0,所以我没有使用 All 方向掩码,因为我需要使用 XCode 4.3



                Since I want my code backwards compatible back to 3.0 I didn't use the All orientation masks, as I need to compile using XCode 4.3

                这篇关于iOS 6 中视图控制器的不正确旋转的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:iphone Animation:为什么围绕 X 轴旋转 UILabel 会切断它的下半部分? 下一篇:Android - 如何让 RotateAnimation 更流畅和“物理"?

                相关文章

                <tfoot id='kNG9D'></tfoot>
              • <i id='kNG9D'><tr id='kNG9D'><dt id='kNG9D'><q id='kNG9D'><span id='kNG9D'><b id='kNG9D'><form id='kNG9D'><ins id='kNG9D'></ins><ul id='kNG9D'></ul><sub id='kNG9D'></sub></form><legend id='kNG9D'></legend><bdo id='kNG9D'><pre id='kNG9D'><center id='kNG9D'></center></pre></bdo></b><th id='kNG9D'></th></span></q></dt></tr></i><div id='kNG9D'><tfoot id='kNG9D'></tfoot><dl id='kNG9D'><fieldset id='kNG9D'></fieldset></dl></div>

                <legend id='kNG9D'><style id='kNG9D'><dir id='kNG9D'><q id='kNG9D'></q></dir></style></legend>

                  • <bdo id='kNG9D'></bdo><ul id='kNG9D'></ul>

                    <small id='kNG9D'></small><noframes id='kNG9D'>