識別OS X 中的活動應用程式
問題:
問題:獲取活動應用程式清單捆綁包,特別是用戶啟動的GUI 應用程序,其資訊超出了進程名稱。
答案:<code class="swift">import Foundation import AppKit // Get all running applications let workspace = NSWorkspace.shared let applications = workspace.runningApplications for app in applications { print(app) }</code>
產生的應用程式物件是一個 NSApplication 實例,其中包含必要的信息,包括所需的套件標識符。
每個 NSApplication 實例都包含一個唯一識別應用程式套件的bundleIdentifier屬性。
以上是如何檢索 OS X 中活動應用程式的清單?的詳細內容。更多資訊請關注PHP中文網其他相關文章!