macOS Bundle 之间的双向数据交换 (swift)

Bidirectional data exchange between macOS Bundles (swift)

如何在 macOS Bundle 之间传递数据?

例如:MyApp.app 将数据发送到 MyBundle.bundle 中的函数或 class 初始化器,后者对其执行自己的逻辑。它甚至可以 return 一个值,然后 MyApp.app 可以进一步处理它。

例如,MyBundle 中的函数(未嵌套在任何其他声明中):

    void initialise(unsigned int frameCount) {…} // not a class initialiser btw

我试过:

两者的关键问题是我无法将数据作为参数传递。所以 print 语句可以工作,但不能使用参数。

编辑:已接受的答案显示了调用函数指针的正确方法。我谈到的崩溃是由于使用了没有正确桥接到 C 语言家族的类型,所以如果有疑问,请坚持使用 Foundation 库中的 NSNumber、NSString 等。

根据你的问题 and comments in 我假设你是在动态调用 Swift 函数指针或带有 UnsafeBufferPointer 参数的 objective-c 方法之后。

首先 UnsafeBufferPointer 会制作一份副本,因此为了互操作,我建议改用 OpaquePointer

假设函数指向带签名的指针大小写 void cFunction(void* arg):

let fakeIMP = unsafeBitCast(functionToPointerAddress, to: IMP.self)
unsafeBitCast(fakeIMP,to:(@convention(c)(OpaquePointer)->Void).self)(bufferArg)

假设静态objective-c方法:

let receiverClass = NSClassFromString("SomeClass")
let selector: Selector = NSSelectorFromString("selectorArg:")
let methodIMP: IMP! = method_getImplementation(class_getClassMethod(receiverClass, selector))
unsafeBitCast(methodIMP,to:(@convention(c)(AnyClass?,Selector,OpaquePointer)->Any).self)(receiverClass,selector, bufferArg)

对于您提供的 C 签名

void initialise(unsigned int frameCount);

试试这个:

let imp = unsafeBitCast(functionToPointerAddress, to: IMP.self)
unsafeBitCast(imp,to:(@convention(c)(Int)->Void).self)(1)