【发布时间】:2014-04-08 20:23:10
【问题描述】:
有没有办法检查应用程序是否刚刚关闭?不是特别是我的应用程序。例如,我想知道笔记应用程序是否已关闭。或者如果 safari 已经退出。
这可能吗?以及如何?
【问题讨论】:
标签: objective-c macos
有没有办法检查应用程序是否刚刚关闭?不是特别是我的应用程序。例如,我想知道笔记应用程序是否已关闭。或者如果 safari 已经退出。
这可能吗?以及如何?
【问题讨论】:
标签: objective-c macos
您可以注册NSWorkspaceDidTerminateApplicationNotification:
[[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self
selector:@selector(appTerminatedNotification:)
name:NSWorkspaceDidTerminateApplicationNotification
object:nil];
通知在应用程序终止时发布,userInfo
通知中包含有关已终止应用的信息:
-(void)appTerminatedNotification:(NSNotification *)notification
{
NSLog(@"%@ terminated", [[notification userInfo] objectForKey:@"NSApplicationName"]);
}
【讨论】: