风景... iPhone ...加速计问题

时间:2012-04-17 20:30:18

标签: iphone objective-c

有这一切......

- (BOOL)shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation)interfaceOrientation {

if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
    return (interfaceOrientation != UIInterfaceOrientationPortrait && interfaceOrientation       != UIInterfaceOrientationLandscapeLeft && interfaceOrientation !=      UIInterfaceOrientationPortraitUpsideDown);
  } else {
    return YES;
}
}

我希望加速度计在风景中工作,就好像它是纵向的......我有所有加速度计的东西,如:

- (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration*)acceleration {
   accx = acceleration.x;

}

我也试过看其他问题,但我找不到解决方案......?

2 个答案:

答案 0 :(得分:0)

好的,如果理解正确,你是在纵向(在X轴方向看图像),向右倾斜并向左倾斜然后应用程序中的图像应该左右移动。然后你切换到横向,你的图像现在应该左右移动,但它没有,你应该注意的轴现在是Y轴。

除非存在硬件损坏并且加速计已停止工作,否则没有理由在旋转到横向时不会看到Y轴发生任何变化。

iPhone Accelerometer

现在,您要求的是一种重置加速度计的方法,以便即使Y轴上发生了变化,您仍可以继续读取X.不,除非你写一个额外的方法,否则没有办法做到这一点......这就是:

+(UIAccelerationValue)fixedAccelerationValue{
    //Check which axis you should look for
    if ( [[UIDevice currentDevice] orientation] == UIInterfaceOrientationPortrait || [[UIDevice currentDevice] orientation] == UIInterfaceOrientationUpsideDown ){
        //read from the x axis
    }
    else{
        //read from the y axis
    }

}

答案 1 :(得分:0)

我遇到了同样的问题并通过在实现文件中BOOL之前添加UIACCELEROMETER语句来修复它。

(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{

    if (interfaceOrientation == UIInterfaceOrientationPortrait ||
        interfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
        interfaceOrientation == UIInterfaceOrientationLandscapeRight)
        return YES;
    else
        return NO;
}

希望这有帮助。