2

タイトルが示すように: iOS アプリが閉じられているか、バックグラウンドにある時間を確認するにはどうすればよいですか? アプリが閉じられているか、3 時間以上バックグラウンドにある場合にメソッドを呼び出したいので、これを知る必要があります。

4

2 に答える 2

3

時間を NSUserDefaults に保存することで、アプリケーションがバックグラウンド/強制終了された時間を追跡し、アプリケーションが再起動されたときにそれらを使用できます。このコードを試してください (フォーマットされた方法でアプリでさらに使用したため、日付をフォーマットしました。日付のフォーマットを無視することもできます)。

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    NSDateFormatter *dateFormat = [[NSDateFormatter alloc]init];
    [dateFormat setDateFormat:@"MM/dd/yyyy HH:mm:ss"];
    NSString *backGroundTime = [dateFormat stringFromDate:[NSDate date]];
    [[NSUserDefaults standardUserDefaults]setValue:backGroundTime forKey:@"backGroundTime"];
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}

- (void)applicationWillEnterForeground:(UIApplication *)application
{
    NSDateFormatter *dateFormat = [[NSDateFormatter alloc]init];
    [dateFormat setDateFormat:@"MM/dd/yyyy HH:mm:ss"];
    NSString *foreGroundTime = [dateFormat stringFromDate:[NSDate date]];
    NSString *backGroundTime = [[NSUserDefaults standardUserDefaults]valueForKey:@"backGroundTime"];
    [self minCalculation_backgroundtime:backGroundTime forgroundTime:foreGroundTime];
    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}

// Call this method to calculate the duration of inactivity
-(void)minCalculation_backgroundtime:(NSString *)backgroundTime forgroundTime:(NSString *)foreGroundTime
{
    NSDateFormatter *dateformat = [[NSDateFormatter alloc]init];
    [dateformat setDateFormat:@"MM/dd/yyyy HH:mm:ss"];

    NSDate *lastDate = [dateformat dateFromString:foreGroundTime];
    NSDate *todaysDate = [dateformat dateFromString:backgroundTime];
    NSTimeInterval lastDiff = [lastDate timeIntervalSinceNow];
    NSTimeInterval todaysDiff = [todaysDate timeIntervalSinceNow];
    NSTimeInterval dateDiff = lastDiff - todaysDiff;
    int min = dateDiff/60;
    NSLog(@"Good to see you after %i minutes",min);
}
于 2013-11-11T16:53:07.833 に答える
2

バックグラウンドで実行する時間を節約できますNSUSerDefaults。アプリがフォアグラウンドに戻ると、その時間の差を取得できます。アプリがバックグラウンドになるとこのメソッドが実行- (void)applicationDidEnterBackground:(UIApplication *)applicationされ、フォアグラウンドに戻ると- (void)applicationWillEnterForeground:(UIApplication *)applicationこのメソッドが呼び出されます。

于 2013-11-11T16:54:58.453 に答える