0

我想使用 SBApplication sendEvent 发送原始数据(一个 void*)

不幸的是,我没有找到有关此的文档。

你有什么想法来实现这一目标吗?

在此先感谢您的帮助,

问候,

4

1 回答 1

1

sendEvent:id:parameters:实际上是所有 SBObjects 都响应的消息,而不仅仅是 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 对象中,然后传递它。

于 2010-09-28T21:50:25.403 回答