ios – 在应用程式额外资讯中检测方向的最佳方式是什么?

在应用程序扩展中检测设备方向的最佳方法是什么?我在这里找到的解决方案有不同的结果:

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

Get device current orientation (App Extension)

我看过大小类和UITraitCollection,发现设备不准确地报告说它实际上是横向的(不知道这是否是操作系统的错误,或者我没有正确的方式来查询正确的API).

什么是最好的方法来完成:

>当第一次加载扩展时,设备的当前方向
>设备将旋转到的方向
>设备旋转到的方向

谢谢,

解决方法

我面对这个问题,也透过你的例子,但并没有很好的解决办法.
我如何解决它:我创建了一个类,可以对UIScreen值进行一些计算,并返回自定义的设备方向.

标题

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

@interface InterfaceOrientation : NSObject

+ (InterfaceOrientationType)orientation;

@end

执行:

@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

我把它放到viewWillLayoutSubviews或viewDidLayoutSubviews方法来捕获方向改变事件.

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

如果您想要确定设备方向(左,右,上下颠倒),则此方法无法解决您的问题.它只是返回肖像或风景方向.

希望会帮助你.

相关文章

背景 前端时间产品经理决定使用百度统计,使得 工程B 中原统计sdk-友盟统计,需要被去除。之前尝试去除...
结论: alloc负责分配内存和创建对象对应的isa指针; init只是返回alloc生成的对象。 所以alloc后,多次...
更新 如果UI愿意把启动图切割成n份,按一定约束在launchscreen.storyboard中进行排版,启动图效果会更好...
最近在看一本书《Effective OC 2.0》,今天看到有个tip是OC适中循环各自优劣性,作者最终推荐此块循环。...
// // ViewController.m // paintCodeTestOC //gif // Created by LongMa on 2019/7/25. // #import &a...
背景介绍 一般情况下,出于省电、权限、合理性等因素考虑,给人的感觉是很多奇怪的需求安卓可以实现,但...