0

macOS 应用程序是否可以侦听来自另一个应用程序的特定事件?

我想检测何时启动 Time Machine 备份,以便创建 sparsebundle 所在的 NAS 文件夹的时间点快照。

4

1 回答 1

1

Time Machine 引擎发送分布式通知

添加观察者

Objective-C

[[NSDistributedNotificationCenter defaultCenter] addObserver:self
                                                   selector:@selector(handleNotifications:)
                                                       name:nil
                                                     object:nil];

迅速

DistributedNotificationCenter.default().addObserver(self, selector: #selector(handleNotifications), name: nil, object: nil)

并实现相应的选择器

Objective-C

- (void)handleNotifications:(NSNotification *)notification {
    NSLog(@"%@", notification);
}

迅速

@objc func handleNotifications(_ notification : Notification) {
    print(notification)
}

您必须过滤与 Time Machine 相关的通知。您还可以通过name参数观察特定通知

于 2019-02-28T14:28:46.280 回答