gpt4 book ai didi

ios - 如果屏幕以纵向模式锁定,如何检测方向?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:32:40 25 4
gpt4 key购买 nike

我的应用程序可以在两个方向(纵向和横向)下工作,但其中一个屏幕被锁定在纵向模式。但我必须为该特定屏幕在 Rotation 变量中设置一个值。但是我没有找到方向。所以我想找到方向。我正在使用下面的代码在纵向模式下锁定我的屏幕,它会起作用。

- (UIInterfaceOrientationMask) supportedInterfaceOrientations {
[super supportedInterfaceOrientations];
return UIInterfaceOrientationMaskPortrait;
}

我正在使用下面的方法来检测方向,但这不会被调用。

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
{
UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation];
if (orientation == UIInterfaceOrientationPortrait || orientation == UIInterfaceOrientationPortraitUpsideDown)
{
NSLog(@"UIInterfaceOrientationPortrait");
}
else
{
NSLog(@"UIInterfaceOrientationland");

}
}

最佳答案

如果屏幕锁定为纵向模式,您可以检测方向。简单的方法是“CoreMotion”。代码片段如下。

1-) 首先,您应该将 CoreMotion 框架添加到 Build Settings enter image description here

2-) 导入 CoreMotion 框架

#import <CoreMotion/CoreMotion.h>

3-) 添加如下属性。

    @interface BaseGeneralViewController (){
UIInterfaceOrientation orientationLast, orientationAfterProcess;
CMMotionManager *motionManager;
UIInterfaceOrientation orientationNew;

}

4-) 我们创建方法来初始化

 - (void)initializeMotionManager{
motionManager = [[CMMotionManager alloc] init];
motionManager.accelerometerUpdateInterval = .2;
motionManager.gyroUpdateInterval = .2;

[motionManager startAccelerometerUpdatesToQueue:[NSOperationQueue currentQueue]
withHandler:^(CMAccelerometerData *accelerometerData, NSError *error) {
if (!error) {
[self outputAccelerationData:accelerometerData.acceleration];
}
else{
NSLog(@"%@", error);
}
}];
}

5-)声明outputAccelerationData方法

    - (void)outputAccelerationData:(CMAcceleration)acceleration{

if (acceleration.x >= 0.75 && orientationLast != UIInterfaceOrientationLandscapeLeft) {
orientationNew = UIInterfaceOrientationLandscapeLeft;
[self callQRCodePayment:UIDeviceOrientationLandscapeRight];
}
else if (acceleration.x <= -0.75 && orientationLast != UIInterfaceOrientationLandscapeRight) {
orientationNew = UIInterfaceOrientationLandscapeRight;
[self callQRCodePayment:UIDeviceOrientationLandscapeLeft];
}
else if (acceleration.y <= -0.75) {
//orientationNew = UIInterfaceOrientationPortrait;
//NSLog(@"Portrait");
}
else if (acceleration.y >= 0.75) {
//orientationNew = UIInterfaceOrientationPortraitUpsideDown;
}
else {
// Consider same as last time
return;
}

if (orientationNew == orientationLast)
return;

orientationLast = orientationNew;
}

6-)调用viewDidload中的initialize方法

    - (void)viewDidLoad
{
[super viewDidLoad];
[self initializeMotionManager];
}

可以看详细帖子change Oriantation

关于ios - 如果屏幕以纵向模式锁定,如何检测方向?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39051033/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com