我正在尝试使用UIAccelerometer在Objective-C中切换前后相机。基本上,如果设备正面朝上,我希望后置摄像头打开。如果设备面朝下(屏幕已关闭),我希望前置摄像头处于活动状态。解决这个问题的最佳方法是什么?我通过AVFoundation访问相机。谢谢!
答案 0 :(得分:1)
我有一些可能对你有帮助的代码,也是在我的一个使用相机的项目中创建的。
这是加速度计代表的代码,您可以在其中跟踪设备的位置。
- (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration;
{
CGFloat x = -[acceleration x];
CGFloat y = [acceleration y];
CGFloat angle = atan2(y, x);
if ( angle >= -2.25f && angle <= -0.25f )
{
self.interfaceOrientation = UIInterfaceOrientationPortrait;
}
else if ( angle >= -1.75f && angle <= 0.75f )
{
self.interfaceOrientation = UIInterfaceOrientationLandscapeRight;
}
else if( angle >= 0.75f && angle <= 2.25f )
{
self.interfaceOrientation = UIInterfaceOrientationPortraitUpsideDown;
}
else if ( angle <= -2.25f || angle >= 2.25f )
{
self.interfaceOrientation = UIInterfaceOrientationLandscapeLeft;
}
}
要查看更多详细信息,如何使用委托,如何用户声明事物等,请检查我的github上的代码:
实施档案: https://github.com/lucasecf/flipped-cam/blob/master/flipped-cam/LEImagePickerController.m