设备运动在后台更新

时间:2016-07-17 16:26:36

标签: ios swift device background-process core-motion

我正在尝试使用CMMotionManager在后​​台通过iPhone或iPad获取设备动态更新。我已经回顾了之前关于这个主题的所有帖子,并认为我的代码可行。我的应用程序也使用背景音频,这在前台和后台正常工作。在Info.plist中,我启用了背景音频和后台位置更新。

出于测试目的,我在AppDelegate中声明了"var motionManager = CMMotionManager()",并在didFinishLaunchingWithOptions中包含以下代码:

    motionManager.deviceMotionUpdateInterval = 0.10
    let queue = NSOperationQueue()
    motionManager.startDeviceMotionUpdatesToQueue(queue, withHandler: {
        data, error in

        let accelerationVector = sqrt(pow(data!.userAcceleration.x, 2) + pow(data!.userAcceleration.y, 2) + pow(data!.userAcceleration.z, 2))
        print("\(accelerationVector)")
    })

当我在我的设备上运行应用程序时,代码按预期在前台执行,但是当我按下主页按钮时,我会在停止之前获得大约10个读数。当我点按应用程序图标时,读数会再次开始。我还在处理程序中的代码上放置了断点,并得到了类似的结果。

我错过了什么?

3 个答案:

答案 0 :(得分:1)

我已在ViewDidlLoad

中声明了动画管理器
CMMotionManager              *motionManager;
/*--Initialising Motion Manager--*/
motionManager = [[CMMotionManager alloc] init];
motionManager.deviceMotionUpdateInterval = 1.0;

当应用程序进入后台时,运动管理器停止提供回调,在这种情况下,当应用程序进入后台或前台时,您需要重新启动动作管理器。为此,我们需要按照以下过程进行操作:

1) we first need to Register for the app transition notification :

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(appDidEnterBackground) name:UIApplicationDidEnterBackgroundNotification object:nil];

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(appDidBecomeActive) name:UIApplicationDidBecomeActiveNotification object:nil];


2)Notification callback functions, in which you will restart the motion manager

- (无效)appDidEnterBackground {

    [self restartMotionUpdates];
}

-(void)appDidBecomeActive{
    [self restartMotionUpdates];
}


3)This function which will restart the motion manager 

-(void)restartMotionUpdates{
[motionManager stopDeviceMotionUpdates];
[motionManager startDeviceMotionUpdatesToQueue:[NSOperationQueue mainQueue] withHandler:^(CMDeviceMotion *motion, NSError *error) {
     NSLog(@"x=%f y=%f z=%f",fabs(motion.userAcceleration.x),fabs(motion.userAcceleration.y),fabs(motion.userAcceleration.z));
   }];
}

答案 1 :(得分:0)

经过更多的研究,我发现了问题。我正在使用播放背景音频。这将在后台播放音频,但这不会让我的应用程序在后台运行。当我切换到使用播放音频时,应用会在后台运行,包括设备动态更新。

答案 2 :(得分:0)

不信任NSLog或其他类似的日志输出

我曾经遇到过这个问题。我想在后台收集运动数据,并对此进行了演示。我发现我的应用程序处于活动状态时可以获取所有数据并进行日志记录,但是当应用程序在后台运行时,xCode日志控制台不输出任何内容。

我曾经认为问题是CoreMotion数据只能在前台收集,但是我错了。当应用程序进入后台时,所有回调仍然有效, NSLog不再告诉我数据

如果您不相信,只需将所有数据收集到NSMutableArray或其他集合中,然后检查在后台运行应用程序时收集的数据。 例如

@property (nonatomic, strong) NSMutableArray *arrAltimeters;

...

[self.altimeter startRelativeAltitudeUpdatesToQueue:self.operationQueue withHandler:^(CMAltitudeData * _Nullable altitudeData, NSError * _Nullable error) {
            [self.arrAltimeters addObject:altitudeData];
            NSLog(@"Altimate data count = %ld", self.arrAltimeters.count);
}];