如何知道我的 macOS 应用程序是在后台还是前台?

Posted

技术标签:

【中文标题】如何知道我的 macOS 应用程序是在后台还是前台?【英文标题】:How to know if my macOS app is in background or in foreground? 【发布时间】:2019-05-06 21:31:40 【问题描述】:

我想通过 Swift 了解我的 macOS 应用程序是在后台运行还是在前台运行。

我发现了与 ios 应用相关的不同方式(例如:Is there any way to check if iOS app is in background?),但不适用于现代 macOS。

如果 macOS 也有类似的方式,那就太好了:

   let state = NSApplication.applicationState
   if state == .background  // doesn't work
    // do something here
   

【问题讨论】:

你检查NSApplication的属性了吗? 【参考方案1】:

我是这样找到的:

    let application = NSApplication.shared
    let state = application.isActive

    if state 
        print("app in foreground")
    

【讨论】:

以上是关于如何知道我的 macOS 应用程序是在后台还是前台?的主要内容,如果未能解决你的问题,请参考以下文章

快速检测应用程序是在后台还是前台

iOS如何判断应用程序是在前台运行还是后台运行?

判断你的应用在前台还是在后台

Swift - 如何在后台和前台获得某些无声通知?

从后台任务或服务中确定当前前台应用程序

javaweb用户登录注册时是在前台用js校验,还是在后台用servlet校验好?