在CMMotionActivity发生变化时,是否有办法在后台通知我的应用程序?

问题描述 投票:7回答:1

我想知道如果CMMotionActivity发生变化,系统是否可以在后台唤醒应用程序,例如,如果用户在坐下后开始步行/跑步,我希望能够执行一些代码并安排本地通知。

有没有办法要求系统在后台唤醒我的应用程序?

编辑:通过查看reference,它似乎不可能(“[...]和更新不会在您的应用程序被暂停时提供。”),但也许有另一种方式?

ios swift background-process core-motion
1个回答
0
投票

我解决了这个问题,创建了一个后台计时器,并在名为method的选择器中检查活动类型。只需查看代码,以防它对您有用。我接受有关此的建议,更正和建议。

#define k_timer_time 10.0f
@property NSTimer *timer;

- (void) createBackGroundTimerToCheckMotion{
// create new uiBackgroundTask
__block UIBackgroundTaskIdentifier bgTask = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:^{
    [[UIApplication sharedApplication]  endBackgroundTask:bgTask];
    bgTask = UIBackgroundTaskInvalid;
}];

__weak __typeof(self) weakSelf = self;

// and create new timer with async call:
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
    weakSelf.timer = [NSTimer scheduledTimerWithTimeInterval:k_timer_time target:self selector:@selector(onTick:) userInfo:nil repeats:YES];
    weakSelf.timer.tolerance = 5;
    [[NSRunLoop currentRunLoop] addTimer:weakSelf.timer forMode:NSDefaultRunLoopMode];
    [[NSRunLoop currentRunLoop] run];
});

}

- (void) onTick:(NStimer*)timer{
if([CMMotionActivityManager isActivityAvailable])
{
    __weak __typeof(self) weakSelf = self;

    CMMotionActivityManager *cm = [[CMMotionActivityManager alloc] init];

    CMPedometer *sc = [[CMPedometer alloc] init];

    NSDate *now = [NSDate date];

    NSDate *last30Sec = [now dateByAddingTimeInterval:-30];

    [cm queryActivityStartingFromDate:last30Sec toDate:now toQueue:[NSOperationQueue mainQueue] withHandler:^(NSArray *activities, NSError *error)
     {
         [activities enumerateObjectsUsingBlock:^(CMMotionActivity *a, NSUInteger idx, BOOL * _Nonnull stop) {
              //Your stuff here

         }];
     }];
}
else
{
    NSLog(@"Error accessing Motion data");
}

}

© www.soinside.com 2019 - 2024. All rights reserved.