作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有一个窗口的 UIAgent
应用程序。我想从另一个应用程序中隐藏/显示它。如何使用 cocoa 做到这一点?似乎 NSRunningApplication
的 hide
/unhide
方法不会影响 UIAgent 进程。
提前致谢
最佳答案
我用NSDistributionNotifications
解决了这个问题。在 UIAgent 应用程序中,我将观察者添加到 @"QuitProcessNotification"
(任何其他名称):
[[NSDistributedNotificationCenter defaultCenter]
addObserver:self selector:@selector(quit:)
name:@"QuitProcessNotification"
object:@"com.MyCompany.MyApp"
suspensionBehavior:NSNotificationSuspensionBehaviorDeliverImmediately];
回调看起来像这样:
- (void) quit:(NSNotification *) notification
{
[NSApp terminate:nil];
}
在主应用程序中:发送通知:
[[NSDistributedNotificationCenter defaultCenter]
postNotificationName:@"QuitProcessNotification"
object:@"com.MyCompany.MyApp"
userInfo: nil /* no dictionary */
deliverImmediately: YES];
请确保,object
参数确实是您的发送者应用程序的包标识符。
关于cocoa - 如何用cocoa隐藏UIAgent进程的窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6368946/
我是一名优秀的程序员,十分优秀!