真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何解決iOS應(yīng)用進(jìn)入后臺后計時器和位置更新停止問題

這篇文章主要介紹如何解決iOS應(yīng)用進(jìn)入后臺后計時器和位置更新停止問題,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

密山ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為成都創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18982081108(備注:SSL證書合作)期待與您的合作!

由于iOS系統(tǒng)為“偽后臺”運行模式,當(dāng)按下HOME鍵時,如程序不做任何操作,應(yīng)用會有5秒的執(zhí)行緩沖時間,隨機程序被掛起,所有任務(wù)終端,包括計時器和位置更新等操作,但程序打開后臺模式開關(guān)后,部分任務(wù)可以再后臺執(zhí)行,如音頻,定位,藍(lán)牙,下載,VOIP,即便如此,程序的后臺運行最多可以延長594秒(大概是10分鐘)。不幸的是,程序在聲明后臺模式后很有可能在app上架時被拒?;诖耍已芯砍隽瞬挥蒙昝骱笈_模式就能讓計時器和定位在app進(jìn)入前臺時繼續(xù)運行的方法。

  實現(xiàn)原理如下:

  利用iOS的通知機制,在程序進(jìn)入后臺和再次回到前臺時發(fā)送通知,并記錄進(jìn)入后臺的當(dāng)前時間和再次回到前臺的當(dāng)前時間,算出兩者的時間間隔,在程序任何需要的地方添加通知監(jiān)聽者,在監(jiān)聽方法中執(zhí)行代碼塊,代碼塊內(nèi)參數(shù)為通知對象和計算出的時間間隔。以計時器為例,程序再進(jìn)入后臺后,計時器停止運行,此時運用上述方法,在程序再次回到前臺時執(zhí)行代碼塊中內(nèi)容,將程序進(jìn)入后臺時計時器的當(dāng)前時間間隔加上代碼塊的時間間隔參數(shù)就能使計時器準(zhǔn)確無誤地計時。廢話不多說,上代碼:

在AppDelegate.m實現(xiàn)文件中:

- (void)applicationDidEnterBackground:(UIApplication *)application {
  // 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.
  [[NSNotificationCenter defaultCenter]postNotificationName:UIApplicationDidEnterBackgroundNotification object:nil];
}
- (void)applicationWillEnterForeground:(UIApplication *)application {
  // 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.
  [[NSNotificationCenter defaultCenter]postNotificationName:UIApplicationWillEnterForegroundNotification object:nil];
}

代碼說明:程序進(jìn)入后臺后,利用系統(tǒng)通知機制通知程序進(jìn)入后臺和再次回到前臺,監(jiān)聽對象為所有對象。

之后定義一個處理程序進(jìn)入后臺的類YTHandlerEnterBackground

//
// YTHandlerEnterBackground.h
// 分時租賃
//
// Created by 柯其譜 on 17/2/24.
// Copyright © 2017年 柯其譜. All rights reserved.
//
#import 
#import 
/** 進(jìn)入后臺block typedef */
typedef void(^YTHandlerEnterBackgroundBlock)(NSNotification * _Nonnull note, NSTimeInterval stayBackgroundTime);
/** 處理進(jìn)入后臺并計算留在后臺時間間隔類 */
@interface YTHandlerEnterBackground : NSObject
/** 添加觀察者并處理后臺 */
+ (void)addObserverUsingBlock:(nullable YTHandlerEnterBackgroundBlock)block;
/** 移除后臺觀察者 */
+ (void)removeNotificationObserver:(nullable id)observer;
@end

在YTHandlerEnterBackground.m實現(xiàn)文件中:

//
// YTHandlerEnterBackground.m
// 分時租賃
//
// Created by 柯其譜 on 17/2/24.
// Copyright © 2017年 柯其譜. All rights reserved.
//
#import "YTHandlerEnterBackground.h"
@implementation YTHandlerEnterBackground
+ (void)addObserverUsingBlock:(YTHandlerEnterBackgroundBlock)block {
  __block CFAbsoluteTime enterBackgroundTime;
  [[NSNotificationCenter defaultCenter]addObserverForName:UIApplicationDidEnterBackgroundNotification object:nil queue:nil usingBlock:^(NSNotification * _Nonnull note) {
    if (![note.object isKindOfClass:[UIApplication class]]) {
      enterBackgroundTime = CFAbsoluteTimeGetCurrent();
    }
  }];
  __block CFAbsoluteTime enterForegroundTime;
  [[NSNotificationCenter defaultCenter]addObserverForName:UIApplicationWillEnterForegroundNotification object:nil queue:nil usingBlock:^(NSNotification * _Nonnull note) {
    if (![note.object isKindOfClass:[UIApplication class]]) {
      enterForegroundTime = CFAbsoluteTimeGetCurrent();
      CFAbsoluteTime timeInterval = enterForegroundTime-enterBackgroundTime;
      block? block(note, timeInterval): nil;
    }
  }];
}
+ (void)removeNotificationObserver:(id)observer {
  if (!observer) {
    return;
  }
  [[NSNotificationCenter defaultCenter]removeObserver:observer name:UIApplicationDidEnterBackgroundNotification object:nil];
  [[NSNotificationCenter defaultCenter]removeObserver:observer name:UIApplicationWillEnterForegroundNotification object:nil];
}
@end

該類實現(xiàn)了用來添加通知監(jiān)聽者并處理后臺和移除通知監(jiān)聽者的方法,需要注意的是,在addObserverUsingBlock方法中,必須有if (![note.object isKindOfClass:[UIApplication class]])的判斷,否則addObserverForName方法中的代碼塊會執(zhí)行多次,此代碼執(zhí)行了兩次。addObserverUsingBlock方法是在viewWillAppear方法中調(diào)用添加通知監(jiān)聽者,在viewWillDisappear方法中調(diào)用移除通知監(jiān)聽者。

例如,在使用了計時器NSTimer控制器中:

- (void)viewWillAppear:(BOOL)animated {
  [super viewWillAppear:animated];
  [YTHandlerEnterBackground addObserverUsingBlock:^(NSNotification * _Nonnull note, NSTimeInterval stayBackgroundTime) {
    self.rentTimerInterval = self.rentTimerInterval-stayBackgroundTime;
  }];
}
- (void)viewWillDisappear:(BOOL)animated {
  [super viewWillDisappear:animated];
  [self.timer invalidate];
  [YTHandlerEnterBackground removeNotificationObserver:self];
}

我定義了一個倒計時5分鐘的計時器對象timer屬性,并定義了一個計時器當(dāng)前倒計時時間間隔rentTimerInterval屬性,在添加通知監(jiān)聽者代碼塊中,rentTimerInterval等于進(jìn)入后臺時的倒計時時間間隔減去程序停留在后臺的時間間隔,當(dāng)計時器再次回到前臺時,計時器此時的時間間隔是持續(xù)的。雖然計時器并未在后臺持續(xù)運行,但是使用了此方法,同樣實現(xiàn)了計時器的正確即時。

同樣的,當(dāng)程序存在位置更新功能時,當(dāng)程序進(jìn)入后臺,位置服務(wù)對象會自動停止更新,此時的作法依然是調(diào)用上述兩個處理進(jìn)入后臺的方法,使得程序進(jìn)入后臺后,再次開始定位:

在需要位置更新的類中:

- (void)viewWillAppear:(BOOL)animated {
  [super viewWillAppear:animated];
  self.locService.delegate = self;
  [self.locService startUserLocationService];
  //進(jìn)入后臺再進(jìn)入前臺重新開始定位
  [YTHandlerEnterBackground addObserverUsingBlock:^(NSNotification * _Nonnull note, NSTimeInterval stayBackgroundTime) {
    [self.locService startUserLocationService];
  }];
}
- (void)viewWillDisappear:(BOOL)animated {
  [super viewWillDisappear:animated];
  //停止定位
  self.locService.delegate = nil;
  [self.locService stopUserLocationService];
  //移除后臺監(jiān)聽
  [YTHandlerEnterBackground removeNotificationObserver:self];
}

此處使用的是百度地圖SDK

利用這種方法,像是計時器和位置更新等需要在后臺運行的任務(wù)都可以實現(xiàn)相應(yīng)的需求,只是麻煩的是,在任何需要的類中都要調(diào)用這兩種方法,你可以根據(jù)自己的需求,在程序進(jìn)入后臺和再次回到前臺時添加別的參數(shù)(通知對象參數(shù)是必須的),例如保存進(jìn)入后臺前的操作等等?;蚴嵌x不同的添加通知監(jiān)聽者的方法以實現(xiàn)不同的需求。

以上是“如何解決iOS應(yīng)用進(jìn)入后臺后計時器和位置更新停止問題”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


網(wǎng)站名稱:如何解決iOS應(yīng)用進(jìn)入后臺后計時器和位置更新停止問題
轉(zhuǎn)載注明:http://weahome.cn/article/ighjep.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部