UiNavigationController Авторотация не работает на устройстве? - PullRequest
0 голосов
/ 24 ноября 2011

Почему на устройстве не работает автоповорот UINavigationController? Как установить свойство автоматического поворота для UinavigationController?

    **BusinessCardAppDelegate.m**

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    { 
           [self.window makeKeyAndVisible];  
        RootView *rView=[[RootView alloc]initWithNibName:@"RootView" bundle:nil];
        self.naviGationController =[[[UINavigationController alloc]initWithRootViewController:rView]autorelease];

        [self.window addSubview:naviGationController.view];
        return YES;
    }

    **RootView.m**

    - (void)viewDidLoad
    {
        [super viewDidLoad];
        self.title =@"BusinessCard";  
        [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(orientationFunction:) name:UIDeviceOrientationDidChangeNotification object:nil];

    }

    -(void)orientationFunction:(NSNotification*)notification
    {
        UIInterfaceOrientation orientation = [[UIDevice currentDevice] orientation];
         switch (orientation)
        {
            case UIDeviceOrientationPortrait:
                /* AlertView Show*/
                break;

            case UIDeviceOrientationPortraitUpsideDown:
               /* AlertView Show*/
                break;
            case UIDeviceOrientationLandscapeLeft:
               /* AlertView Show*/
                break;
            case UIDeviceOrientationLandscapeRight:
               /* AlertView Show*/
                break;
            default:
                break;
        }

  }

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

Почему это не работает на устройстве, но работает нормально в симуляторе? Я не понял, почему это не работает? заранее спасибо.

1 Ответ

0 голосов
/ 24 ноября 2011

[[UIDevice currentDevice] orientation] возвращает UIDeviceOrientation, а не UIInterfaceOrientation.

Если вы хотите получить текущую ориентацию интерфейса, вы можете использовать следующую команду:

UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation];

или

UIInterfaceOrientation orientation = self.interfaceOrientation; // into UIViewController
...