我喜欢使用SBApplication sendEvent
发送原始数据(void *)不幸的是,我没有找到关于此的文件。
你有什么想法实现这个目标吗?
提前感谢yoru的帮助,
此致
答案 0 :(得分:1)
sendEvent:id:parameters:
实际上是所有SBObject响应的消息,而不仅仅是SBApplications。 SBObject.h说:
// Send an Apple event. The direct parameter is the specifier of the receiver if it // is non-null. Other parameters are given using "parameters:" as a list of pairs // of the parameter four-byte code followed by an Objective-C object; use a parameter // code of 0 to mark the end of the list.
因此,尝试将数据装入NSData对象,并传递它。