标签: c++ macos cocoa appleevents
请给我一些关于如何工作的提示,更实际的是,从Mac上用C ++编写的原始控制台应用程序处理Apple事件。我知道Cocoa中有很多基础设施用于此目的,但我认为这只是一个包装器。 可能是不可能的?
答案 0 :(得分:0)
它有C API:
http://developer.apple.com/legacy/mac/library/#documentation/Carbon/Reference/Open_Scripti_Architecture/Reference/reference.html
和
http://developer.apple.com/legacy/mac/library/#documentation/Carbon/Reference/Apple_Event_Manager/Reference/reference.html
概述:
http://developer.apple.com/legacy/mac/library/#documentation/AppleScript/Conceptual/AppleEvents/intro_aepg/intro_aepg.html
但是你可以看到Apple现在认为这是传统的,所以对于一个新项目,使用Objective-C API可能是更好的选择。