Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the best way to detect orientation in an app extension?

What is the best way to detect a device's orientation in an application extension? I have had mixed results with solutions I've found on here:

How to detect Orientation Change in Custom Keyboard Extension in iOS 8?

Get device current orientation (App Extension)

I have looked at size classes and UITraitCollection and found that the device inaccurately reports that it is in portrait when it is in fact in landscape (not sure if this is OS bug, or I am not querying the right APIs the right way).

What is the best method for accomplishing:

  • The device's current orientation when the extension is first loaded
  • The orientation the device will rotate to
  • The orientation the device did rotate to

Thank you,

like image 862
barfoon Avatar asked Sep 14 '14 05:09

barfoon


2 Answers

I faced with that problem and looked through your examples too, but there wasn't a good solution of it. How I resolved it: I created a class that does some calculations of the UIScreen values and returns the self defined device orientation.

Class Header:

typedef NS_ENUM(NSInteger, InterfaceOrientationType) {
    InterfaceOrientationTypePortrait,
    InterfaceOrientationTypeLandscape
};

@interface InterfaceOrientation : NSObject

+ (InterfaceOrientationType)orientation;

@end

Implementation:

@implementation InterfaceOrientation

+ (InterfaceOrientationType)orientation{

    CGFloat scale = [UIScreen mainScreen].scale;
    CGSize nativeSize = [UIScreen mainScreen].currentMode.size;
    CGSize sizeInPoints = [UIScreen mainScreen].bounds.size;

    InterfaceOrientationType result;

    if(scale * sizeInPoints.width == nativeSize.width){
        result = InterfaceOrientationTypePortrait;
    }else{
        result = InterfaceOrientationTypeLandscape;
    }

    return result;
}

@end

I put it to viewWillLayoutSubviews or viewDidLayoutSubviews methods to catch the orientation changes event.

if([InterfaceOrientation orientation] == InterfaceOrientationTypePortrait){
     // portrait   
}else{
     // landscape   
}

In case you want to get an exact side of the device orientation (left, right, upside down) this approach won't resolve your problem. It just returns either the portrait or landscape orientations.

Hope it will help you.

like image 91
Alexander Polovinka Avatar answered Sep 30 '22 15:09

Alexander Polovinka


You can get the device orientation in extension by adding a observer on UIApplicationWillChangeStatusBarOrientationNotification and then extracting the orientation as follows.

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(orientationWillChange:) name:UIApplicationWillChangeStatusBarOrientationNotification object:nil];
}

- (void)orientationWillChange:(NSNotification*)n
{
    UIInterfaceOrientation orientation = (UIInterfaceOrientation)[[n.userInfo objectForKey:UIApplicationStatusBarOrientationUserInfoKey] intValue];

    if (orientation == UIInterfaceOrientationLandscapeLeft)
        //handle accordingly
    else if (orientation == UIInterfaceOrientationLandscapeRight)
        //handle accordingly
    else if (orientation == UIInterfaceOrientationPortraitUpsideDown)
        //handle accordingly
    else if (orientation == UIInterfaceOrientationPortrait)
        //handle accordingly
}

Thanks

like image 21
Omkar Guhilot Avatar answered Sep 30 '22 17:09

Omkar Guhilot