回答:
アプリデリゲートは、状態遷移を示すコールバックを取得します。それに基づいて追跡できます。
また、UIApplication のapplicationStateプロパティは現在の状態を返します。
[[UIApplication sharedApplication] applicationState]
[[UIApplication sharedApplication] applicationState] != UIApplicationStateActive
UIApplicationStateInactiveはバックグラウンドにあるのとほぼ同等なので、私はより良いと思います...
UIApplicationState state = [[UIApplication sharedApplication] applicationState];
if (state == UIApplicationStateBackground || state == UIApplicationStateInactive)
{
//Do checking here.
}
これは、問題の解決に役立つ場合があります。
下のコメントを参照してください。非アクティブはかなり特殊なケースであり、アプリがフォアグラウンドで起動されている最中である可能性があります。それはあなたの目標に応じてあなたにとって「背景」を意味するかもしれませんし、そうでないかもしれません...
スウィフト3
let state = UIApplication.shared.applicationState
if state == .background {
print("App in Background")
}
アプリケーションの状態について「尋ねる」のではなく、コールバックを受け取りたい場合は、次の2つのメソッドを使用しますAppDelegate
。
- (void)applicationDidBecomeActive:(UIApplication *)application {
NSLog(@"app is actvie now");
}
- (void)applicationWillResignActive:(UIApplication *)application {
NSLog(@"app is not actvie now");
}
迅速5
let state = UIApplication.shared.applicationState
if state == .background {
print("App in Background")
//MARK: - if you want to perform come action when app in background this will execute
//Handel you code here
}
else if state == .foreground{
//MARK: - if you want to perform come action when app in foreground this will execute
//Handel you code here
}
少し簡単にアクセスできるようにするSwift 4.0拡張機能:
import UIKit
extension UIApplication {
var isBackground: Bool {
return UIApplication.shared.applicationState == .background
}
}
アプリ内からアクセスするには:
let myAppIsInBackground = UIApplication.shared.isBackground
さまざまな状態(active
、inactive
およびbackground
)に関する情報を探している場合は、こちらのAppleのドキュメントを参照してください。
locationManager:didUpdateToLocation:fromLocation:
方法について話しているのですか?