UIDeviceOrientationFaceUp - как различить портрет и пейзаж? - PullRequest
19 голосов
/ 05 ноября 2011

Я пытаюсь выяснить, находится ли устройство в портретном или альбомном режиме.Мой код работает довольно хорошо, если устройство не обращено вверх.Если он окажется лицом вверх (и ориентация == 5), он не будет различать портрет и пейзаж.Есть ли способ определить «ориентацию» с точки зрения ландшафта / портрета, если UIDeviceOrientation - FaceUp?

Мой код:

UIDeviceOrientation interfaceOrientation = [[UIDevice currentDevice] orientation];

NSLog(@"orientation: %d", interfaceOrientation);

if (interfaceOrientation == UIDeviceOrientationIsLandscape(interfaceOrientation)) {
    NSLog(@"LANDSCAPE!!!");
}

if (interfaceOrientation == UIDeviceOrientationIsPortrait(interfaceOrientation)) {
    NSLog(@"PORTRAIT!!!");
}

Ответы [ 2 ]

41 голосов
/ 05 ноября 2011

Не следует путать UIDeviceOrientation и UIInterfaceOrientation, они разные, но связаны, как показано в их декларации

typedef enum {
   UIDeviceOrientationUnknown,
   UIDeviceOrientationPortrait,
   UIDeviceOrientationPortraitUpsideDown,
   UIDeviceOrientationLandscapeLeft,
   UIDeviceOrientationLandscapeRight,
   UIDeviceOrientationFaceUp,
   UIDeviceOrientationFaceDown
} UIDeviceOrientation;

typedef enum {
   UIInterfaceOrientationPortrait           = UIDeviceOrientationPortrait,
   UIInterfaceOrientationPortraitUpsideDown = UIDeviceOrientationPortraitUpsideDown,
   UIInterfaceOrientationLandscapeLeft      = UIDeviceOrientationLandscapeRight,
   UIInterfaceOrientationLandscapeRight     = UIDeviceOrientationLandscapeLeft
} UIInterfaceOrientation;

UIDeviceOrientation говорит вам, какова ориентация устройства.UIInterfaceOrientation сообщает вам, какова ориентация вашего интерфейса, и используется UIViewController.UIInterfaceOrientation будет явно портретным или альбомным, тогда как UIDeviceOrientation может иметь неоднозначные значения (UIDeviceOrientationFaceUp, UIDeviceOrientationFaceDown, UIDeviceOrientationUnknown).

В любом случае вам не следует пытаться определить ориентациюUIViewController с [[UIDevice currentDevice] orientation], так как независимо от ориентации устройства свойство UIViewController interfaceOrientation может отличаться (например, если ваше приложение вообще не поворачивается в альбомную ориентацию [[UIDevice currentDevice] orientation] может быть UIDeviceOrientationLandscapeLeft, а viewController.interfaceOrientation можетбыть UIInterfaceOrientationPortrait).

Обновление: Начиная с iOS 8.0, [UIViewController interfaceOrientation] устарело.Альтернатива здесь - [[UIApplication sharedApplication] statusBarOrientation].Это также возвращает UIInterfaceOrientation.

5 голосов
/ 04 января 2012

Я создаю этот скелет кода для работы с желаемыми и нежелательными ориентациями устройств, в моем случае я хочу игнорировать UIDeviceOrientationUnknown, UIDeviceOrientationFaceUp и UIDeviceOrientationFaceDown, кэшируя последнюю разрешенную ориентацию. Этот код касается устройств iPhone и iPad и может быть полезен для вас.

- (void)modXibFromRotation {

    UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];
    NSString *device = [[UIDevice currentDevice]localizedModel];
    UIInterfaceOrientation cachedOrientation = [self interfaceOrientation];

    if ([device isEqualToString:@"iPad"]) {

        if (orientation == UIDeviceOrientationUnknown || 
            orientation == UIDeviceOrientationFaceUp || 
            orientation == UIDeviceOrientationFaceDown) {

                orientation = (UIDeviceOrientation)cachedOrientation;
        }

        if (orientation == UIDeviceOrientationLandscapeLeft || orientation == UIDeviceOrientationLandscapeRight) {

            /* Your code */
        }

        if (orientation == UIDeviceOrientationPortrait || orientation == UIDeviceOrientationPortraitUpsideDown) {

            /* Your code */     
        }
    }

    if ([device isEqualToString:@"iPhone"] || [device isEqualToString:@"iPod"]) {

        if (orientation == UIDeviceOrientationUnknown || 
        orientation == UIDeviceOrientationFaceUp || 
        orientation == UIDeviceOrientationFaceDown) {

            orientation = (UIDeviceOrientation)cachedOrientation;
        }

        if (orientation == UIDeviceOrientationLandscapeLeft || orientation == UIDeviceOrientationLandscapeRight) {

             /* Your code */
        }

        if (orientation == UIDeviceOrientationPortrait || orientation == UIDeviceOrientationPortraitUpsideDown) {

            /* Your code */
        }
    }
}
...