CMMovementDisorderManager的使用

问题遇到的现象和发生背景

我使用CMMovementDisorderManager这个API获取的数据为什么是个空的呢,下面是我的代码。handle回调里面的数组count = 0。我的movementDisorderManager是使用懒加载的。

问题相关代码,请勿粘贴截图

NSTimeInterval nowTimeInt = [[NSDate date] timeIntervalSince1970];
NSDate *startDate = [NSDate dateWithTimeIntervalSince1970:nowTimeInt - 7 * 24 * 60 * 60];
NSDate *endDate = [self.movementDisorderManager monitorKinesiasExpirationDate];
[self.movementDisorderManager monitorKinesiasForDuration:7 * 24 * 60 * 60];
[self.movementDisorderManager queryDyskineticSymptomFromDate:startDate toDate:endDate withHandler:^(NSArray * _Nonnull dyskineticSymptomResult, NSError * _Nullable error) {
if (error) {

    } else {
        NSLog(@"获取用户震颤数据报错:%@,localizedDescription = %@", error, error.localizedDescription);
    }
    NSLog(@"dyskineticSymptomResult = %ld", dyskineticSymptomResult.count);
}];

// 查询指定日期范围的用户震颤数据
[self.movementDisorderManager queryTremorFromDate:startDate toDate:endDate withHandler:^(NSArray<CMTremorResult *> * _Nonnull tremorResult, NSError * _Nullable error) {
    if (!error) {
        NSLog(@"tremorResult = %ld", tremorResult.count);
    } else {
        NSLog(@"获取用户震颤数据报错:%@,localizedDescription = %@", error, error.localizedDescription);
    }
}];
我想要达到的结果

我想要获取完整的数据